
:root {
  --red: #910e31;
  --red-dark: #900d32;
  --text: #6d7074;
  --bg: #fff;
  --card: #fefcef;
  --divider: #d3d3d3;
  --white: #fff;
  --band: #f5f2ec;
}


@font-face {
  font-family: "Yummo_Regular";
  src: url("../font/Yummo/Yummo_Regular.otf") format("opentype");
  font-weight: 400;
}
@font-face {
  font-family: "Yummo_Bold";
  src: url("../font/Yummo/Yummo_Bold.otf") format("opentype");
  font-weight: 700;
}
@font-face {
  font-family: "Yummo_SemiBold";
  src: url("../font/Yummo/Yummo_SemiBold.otf") format("opentype");
  font-weight: 600;
}
@font-face {
  font-family: "Yummo_Light";
  src: url("../font/Yummo/Yummo_Light.otf") format("opentype");
  font-weight: 300;
}
@font-face {
  font-family: "Yummo_Thin";
  src: url("../font/Yummo/Yummo_Thin.otf") format("opentype");
  font-weight: 200;
}
@font-face {
  font-family: "MinionPro_Regular";
  src: url("../font/Minion/MinionPro-Regular.otf") format("opentype");
  font-weight: 800;
}

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


body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;

  font-family: "Yummo_Regular", sans-serif;
  font-size: 20px;
  line-height: 1.5;

  background: var(--bg);
  color: var(--text);

  align-items: flex-start !important;
}

/* HEADER*/
.page-template-page-lp-front .header,
.page-template-page-lp-front-second .header,
.page-template-page-lp-front-third .header {
  background: var(--red);
  color: var(--white);
  width: 100%;
  position: static !important;
}

.header-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 25px 40px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}

.header .logo,
.nav {
  flex-shrink: 0;
}

.header .logo img {
  width: 300px;
  height: auto;
}

.nav {
  font-weight: 300;
  font-size: 20px;
}

/* HERO CARDS*/
.hero-cards {
    max-width: 900px;   
    margin: 60px auto;
    background: #fefcef;
    padding: 25px 32px;        
    width: calc(100% - 40px);  
    border-radius: 14px;
    text-align: center;
}


section.hero-cards h2.hero-title {
    color: #910e31;
    font-size: 34px;
    line-height: 1.3;
    font-family: "Yummo_Bold", serif;
    margin-bottom: 30px;
}


.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;     
    text-align: left;
}

.hero-col h3 {
    color: #6d7074;
    margin-bottom: 20px;
    text-align: center;
}

.hero-col p {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
}

.hero-col p::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px; 
    width: 18px;
    height: 18px;
    background-image: url("../img/check.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

.hero-btn {
    margin-top: 50px;
    margin-bottom: 0;
    display: inline-block;
}


/* PARTNERS - DELETED*/
.partners-block {
  max-width: 100%;
  padding: 20px;
}

.partners-logos {
  display: flex;
  justify-content: center;
  gap: 80px;
  padding-top: 15px;
  padding-bottom: 3px;
}

.partners-logos img {
  max-height: 130px;
  max-width: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* TRANSITION SECTION */
.transition-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
}

.transition-title {
  font-size: 28px;
  font-family: "Yummo_Bold";
  color: var(--text);
  margin-top: 30px;
}

.transition-text {
  color: var(--text);
  margin-bottom: 15px;
}

.transition-card {
  background: var(--card);
  border-radius: 8px;
  margin: 25px 0;
  padding: 24px 32px;   
  height: auto;
}

.transition-btn-wrap{
  text-align: center;
  margin-top: 40px;
}
.transition-btn-wrap .hero-btn{
  margin: 0 !important; 
  margin-bottom: 20px !important;
}



/*ABOUT SECTION */
.about-section {
  max-width: 900px;
  margin: 0 auto;
}

.about-subtitle {
  font-size: 20px;
  font-weight: normal;
}

.about-section-underlined {
  font-size: 20px;
  font-weight: normal;
  text-decoration: underline;
}

.about-section h3 {
  margin-bottom: 2px;
}

.about-section p {
  margin-top: 0;
  margin-bottom: 20px;
}

.section-title-red {
  font-family: "MinionPro_Regular", serif;
  color: var(--red);
  font-size: 28px;
  margin-bottom: 25px;
  text-align: left;
}

/* MEDIA SECTION*/
.media-section {
  max-width: 900px;
  margin: 0 auto 60px;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.media-item {
  display: block;
  text-align: left;
  padding: 0;
}

.media-logo {
  width: 70px;
  height: 30px;
  object-fit: contain;
  display: block;
  margin-bottom: 10px;
}

.media-photo {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 10px;
}

/* STATS SECTION*/
.stats-section {
  max-width: 900px;
  margin: 30px auto 40px;
}

.stats-section h2 {
  text-align: left !important;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 25px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  color: var(--text);
  align-items: center;
  text-align: center;
}

.stat-circle {
  position: relative;
  width: 120px;
  height: 120px;
}

.stat-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.stat-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  font-family: "Yummo_Bold";
  font-size: 18px;
  color: var(--red);
}

.stat-label {
  margin-top: 10px;
  font-size: 20px;
  line-height: 1.3;
}

/* REVIEWS SECTION */
.reviews-section {
  max-width: 900px;
  margin: 0 auto 60px;
}

.review-subtitle {
  font-size: 19px;
  margin-top: -10px;
  margin-bottom: 30px;
  color: var(--text);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px 25px;
}

.review-item {
  line-height: 1.45;
}

.review-item h3,
.review-item p {
  color: var(--text);
}

.review-author {
  font-family: "Yummo_Bold";
  font-size: 19px;
  margin-bottom: 6px;
}

.review-text {
  color: var(--text);
  font-size: 20px;
}

.reviews-section .review-text::before{
  content: "★★★★★";
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  letter-spacing: 2px;
  color: #E4B200;
  line-height: 1;
}


/* FAQ SECTION */
.faq-section {
    max-width: 900px;
    margin: 0 auto 50px;
}

.faq-item {
    padding: 20px;
    cursor: pointer;
    border-radius: 12px;
    transition: background 0.25s;
}

/* Pozadina SAMO kad je otvoreno */
.faq-item.open {
    background: #fefcef;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    font-size: 18px;
    font-family: "Yummo_Bold";
    color: #6d7074;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
   

}

.faq-arrow {
    width: 18px;
    height: 18px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .1s ease;
    background: transparent;
}


/* Kada se otvori */
.faq-item.open .faq-answer {
    max-height: 500px;
    background: #fefcef;
}


/* answ */
.highlight {
  background: var(--card);
  padding: 15px;
  border-radius: 5px;
}

/* PROJECT SUCCESS SECTION*/
.project-success {
  max-width: 900px;
  margin: 5px auto;
  text-align: center;
  padding: 0 5px 0 10px;
}

.project-success .title-centre-red {
  color: var(--red-dark);
  font-size: 32px;
  margin-bottom: 30px;
  padding-top: 1px;
  font-family: "MinionPro_Regular", serif;
}

.intro-text {
  margin-top: 15px; 
  margin-bottom: 18px;
  line-height: 1.6;
  text-align: center;
  color: var(--red);
  font-family: "Yummo_SemiBold", sans-serif;
}

.btn-red {
  background: var(--red-dark);
  color: var(--white);

  padding: 14px 34px;
  text-decoration: none;
  border-radius: 8px;
  display: inline-block;

  font-weight: bold;
  margin-top: 25px;
  margin-bottom: 25px;
  transition: 0.2s ease;
}

.btn-red:hover {
  opacity: 0.85;
}

/* FOOTER 
.footer {
  background: var(--red);
  color: var(--white);
  padding: 50px 40px;
  text-align: center;
}

.footer-inner {
  max-width: 900px;
  padding: 0 20px;

  display: flex;
  flex-direction: column;
  align-items: center;

  margin: auto;
}

.footer-logo img {
  width: 300px;
}

.footer-contact {
  margin-top: 20px;
}

.contact-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.contact-row span,
.contact-row a {
  color: var(--white);
  font-family: "Yummo_Regular";
  line-height: 1;
}

.contact-title {
  font-family: "Yummo_Bold";
}

.phone-block {
  font-weight: bold;
  margin: 2px 0;
}

.sep {
  opacity: 0.8;
  font-weight: bold;
}

.email-link {
  color: var(--white);
  font-family: "Yummo_Regular";
  text-decoration: none;
}

.email-link:hover {
  text-decoration: underline;
}

.footer-btn,
.page-template-page-lp-front .footer-btn {
  background: var(--white);
  color: var(--red);

  padding: 14px 34px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;

  margin-top: 10px;
}

.footer-btn:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
}

.footer-question {
  margin: 20px 0;
}

.footer-copyright {
  margin-top: 30px;
  line-height: 1.4;
}
  */

/* ARROW LIST*/
.arrow-list {
  list-style: none;
  padding-left: 0;
}

.arrow-list li {
  position: relative;
  padding-left: 18px;
}

.arrow-list li::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 0.15em;
  font-size: 1.05em;
  line-height: 1;
  color: var(--red);
  font-weight: 700;
}

/* DIVIDER */
.divider {
  width: 100%;
  max-width: 900px;
  height: 0.5px;
  background: var(--divider);
  margin: 40px auto 10px;
}

.divider-reviews
{
  width: 100%;
  max-width: 900px;
  height: 0.5px;
  background: var(--divider);
  margin: 40px auto;
}

/* MOBILE RESPONSIVE – GLOBAL*/
@media (max-width: 768px) {
  body {
    font-size: 20px;
    line-height: 1.45;
    overflow-x: hidden;
  }

  section,
  .transition-section,
  .about-section,
  .media-section,
  .stats-section,
  .reviews-section,
  .faq-section,
  .project-success {
    padding-left: 20px;
    padding-right: 20px;
  }

  h1,
  h2 {
    font-size: 26px !important;
    line-height: 1.25;
    text-align: center;
  }

  h3 {
    font-size: 20px;
  }

  /* HEADER */
  .header-inner {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    text-align: center;
  }

  .header .logo img {
    width: 220px;
  }

  .nav {
    font-size: 20px;
  }

  /* HERO */
  .hero-cards {
    max-width: 100%;
    margin: 40px auto;
    padding: 24px 20px;
    width: calc(100% - 40px);
  }

  .hero-title {
    font-size: 26px;
    margin-bottom: 25px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    text-align: left;
  }

  .hero-title .hero-line {
    display: block;
  }

  .hero-col h3 {
    text-align: center;
    margin-bottom: 15px;
  }

  .hero-btn {
    width: 100%;
    text-align: center;
    margin-top: 35px;
  }
    .hero-col p{
    margin-bottom: 16px;
    padding-left: 30px;
  }


  /* PARTNERS */
  .partners-logos {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .partners-logos img {
    max-width: 120px;
    max-height: 60px;
  }

  /* TRANSITION */
  .transition-card {
    height: auto;
    padding: 20px;
  }

  .transitionrs-title {
    text-align: center;
    font-size: 24px;
  }

  /* ABOUT */
  .section-title-red {
    text-align: left;
    font-size: 24px;
  }

  .about-section p,
  .about-section li {
    font-size: 20px;
  }

  /* MEDIA */
  .media-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .media-photo {
    height: 200px;
  }

  /* STATS (changes made in .html needs to be adapted on mobile version!!! */
  .stats-section .section-title-red {
    text-align: left !important;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    justify-items: center;
  }

  .stat-circle {
    width: 100px;
    height: 100px;
    display: flex;            
    align-items: center;
    justify-content: center;
  }


  .stat-number {
    font-size: 14px;
    white-space: nowrap;      
    display: inline-block;    
    text-align: center;
    line-height: 1; 
  }

  .stat-label {
    font-size: 14px;
    line-height: 1.2;
    margin-top: 6px;
  }
  

  .stats-section h2 {
    text-align: center !important;
  }

  /* REVIEWS */
  .review-item {
    text-align: center;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .review-author {
    font-size: 20px;
  }

  .divider-reviews{
    display: none !important;
  }
  /* FAQ */
  .faq-question {
    font-size: 20px;
  }

  .faq-item {
    padding: 15px;
  }

  /* CTA */
  .project-success .title-centre-red {
    font-size: 26px;
  }

  .btn-red {
    width: 100%;
    text-align: center;
    padding: 14px;
    margin-top: 20px;
  }

  /* FOOTER 
  .footer {
    padding: 40px 20px;
  }

  .footer-logo img {
    width: 180px;
  }

  .contact-row {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-btn {
    width: 100%;
    text-align: center;
  }

  .divider {
    margin: 30px auto;
  }
*/
}

/*FIXES - instant par request by Ilija, needs to be cleaned up... */

.page-template-page-lp-front header.site-header,
.page-template-page-lp-front-second header.site-header,
.page-template-page-lp-front-third header.site-header,
.page-template-page-lp-front #masthead,
.page-template-page-lp-front-second #masthead,
.page-template-page-lp-front-third #masthead
{
  display: none !important;
}
.page-template-page-lp-offre header.site-header,
.page-template-page-lp-offre #masthead {
  display: none !important;
}

body.page-template-page-lp-front,
body.page-template-page-lp-front-second,
body.page-template-page-lp-front-third,
body.page-template-page-lp-offre {
  padding-top: 0 !important;
}

body.page-template-page-lp-front .hero-col h3,
body.page-template-page-lp-front-second .hero-col h3,
body.page-template-page-lp-front-third .hero-col h3,
body.page-template-page-lp-offre .hero-col h3 {
  font-family: "Yummo_Bold", sans-serif !important;
  font-size: 20px !important;
  font-weight: 400;
  line-height: 1.45;
}

body.page-template-page-lp-front .about-section h3,
body.page-template-page-lp-front-second .about-section h3,
body.page-template-page-lp-front-third .about-section h3,
body.page-template-page-lp-front .about-section h3.about-subtitle,
body.page-template-page-lp-front-second .about-section h3.about-subtitle,
body.page-template-page-lp-front-third .about-section h3.about-subtitle,
body.page-template-page-lp-front .about-section h3.about-section-underlined,
body.page-template-page-lp-front-second .about-section h3.about-section-underlined ,
body.page-template-page-lp-front-third .about-section h3.about-section-underlined {

  font-family: "Yummo_Bold", sans-serif !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  line-height: 1.3;
  margin-bottom: 2px;
}

body.page-template-page-lp-front,
body.page-template-page-lp-front-second,
body.page-template-page-lp-front-third {

  font-size: 20px;
  line-height: 1.5;
}

body.page-template-page-lp-front p,
body.page-template-page-lp-front-second p,
body.page-template-page-lp-front-third p,
body.page-template-page-lp-front li,
body.page-template-page-lp-front-second li,
body.page-template-page-lp-front-third li,
body.page-template-page-lp-front a,
body.page-template-page-lp-front-second a,
body.page-template-page-lp-front-third a,
body.page-template-page-lp-front span,
body.page-template-page-lp-front-second span,
body.page-template-page-lp-front-third span
 {
  font-size: 20px;
  line-height: 1.5;
}

body.page-template-page-lp-front .faq-question,
body.page-template-page-lp-front-second .faq-question,
body.page-template-page-lp-front-third .faq-question {
 
  font-size: 20px;
  line-height: 1.35;
  gap: 12px;
}

body.page-template-page-lp-front .faq-question span,
body.page-template-page-lp-front-second .faq-question span,
body.page-template-page-lp-front-third .faq-question span,
body.page-template-page-lp-front .faq-question p,
body.page-template-page-lp-front-second .faq-question p ,
body.page-template-page-lp-front-third .faq-question p 
{
  font-size: inherit;
  line-height: inherit;
}

body.page-template-page-lp-front .faq-arrow,
body.page-template-page-lp-front-second .faq-arrow,
body.page-template-page-lp-front-third .faq-arrow 
 {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
}

body.page-template-page-lp-front .media-item p,
body.page-template-page-lp-front-second .media-item p ,
body.page-template-page-lp-front-third .media-item p 
{
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0;
  word-spacing: 0;
  font-kerning: normal;
  font-variant-numeric: normal;
}

section.hero-cards h2.hero-title .hero-line {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
}

body.page-template-page-lp-front .btn-red,
body.page-template-page-lp-front-second .btn-red,
body.page-template-page-lp-front-third .btn-red,

/*body.page-template-page-lp-front .footer-btn,*/
body.page-template-page-lp-front .hero-btn,
body.page-template-page-lp-front-second .hero-btn,
body.page-template-page-lp-front-third .hero-btn,

body.page-template-page-lp-front input[type="submit"],
body.page-template-page-lp-front-second input[type="submit"],
body.page-template-page-lp-front-third input[type="submit"],

body.page-template-page-lp-front button[type="submit"],
body.page-template-page-lp-front-second button[type="submit"],
body.page-template-page-lp-front-third button[type="submit"],

body.page-template-page-lp-front .wpcf7 input[type="submit"],
body.page-template-page-lp-front-second .wpcf7 input[type="submit"],
body.page-template-page-lp-front-third .wpcf7 input[type="submit"],
body.page-template-page-lp-front .wpcf7 button[type="submit"],
body.page-template-page-lp-front-second .wpcf7 button[type="submit"],
body.page-template-page-lp-front-third .wpcf7 button[type="submit"] {
  display: inline-block;
  min-width: 260px;
  text-align: center;
  padding: 14px 34px;
  border-radius: 8px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  body.page-template-page-lp-front .btn-red,
  body.page-template-page-lp-front-second .btn-red,
  body.page-template-page-lp-front-third .btn-red,

 /* body.page-template-page-lp-front .footer-btn, */
  body.page-template-page-lp-front .hero-btn,
  body.page-template-page-lp-front-second .hero-btn,
  body.page-template-page-lp-front-third .hero-btn,
  body.page-template-page-lp-front input[type="submit"],
  body.page-template-page-lp-front-second input[type="submit"],
  body.page-template-page-lp-front-third input[type="submit"],
  body.page-template-page-lp-front button[type="submit"],
  body.page-template-page-lp-front-second button[type="submit"],
   body.page-template-page-lp-front-third button[type="submit"],
  body.page-template-page-lp-front .wpcf7 input[type="submit"],
  body.page-template-page-lp-front-second .wpcf7 input[type="submit"],
  body.page-template-page-lp-front-third .wpcf7 input[type="submit"],
  body.page-template-page-lp-front .wpcf7 button[type="submit"],
  body.page-template-page-lp-front-second .wpcf7 button[type="submit"],
  body.page-template-page-lp-front-third .wpcf7 button[type="submit"] {
    width: 260px !important;
    max-width: 100%;
    min-width: 0 !important;
    padding: 14px 34px !important;
    display: inline-block !important;
    margin-bottom: 24px !important;
    box-sizing: border-box;
  }

  body.page-template-page-lp-front .hero-cards,
  body.page-template-page-lp-front-second .hero-cards,
    body.page-template-page-lp-front-third .hero-cards,
  body.page-template-page-lp-front .project-success,
  body.page-template-page-lp-front-second .project-success ,
  body.page-template-page-lp-front-third .project-success ,
 /* body.page-template-page-lp-front .footer-inner,*/
  body.page-template-page-lp-front .wpcf7,
  body.page-template-page-lp-front-second .wpcf7 ,
  body.page-template-page-lp-front-third .wpcf7
  body.page-template-page-lp-front .wpcf7-form,
  body.page-template-page-lp-front-second .wpcf7-form,
   body.page-template-page-lp-front-third .wpcf7-form {
    text-align: center;
  }
}


/*Demand by Ilija web vs mobile first q*/

.faq-answer-desktop { display: block; }
.faq-answer-mobile { display: none; }

@media (max-width: 768px) {
  .faq-answer-desktop { display: none; }
  .faq-answer-mobile { display: block; }
}

.stat-label-mobile { display: none; }

@media (max-width: 768px) {
  .stat-label-desktop { display: none; }
  .stat-label-mobile { display: inline; }
}



.faq-answer > ul:not(.arrow-list){
  list-style: disc;
  list-style-position: outside;
  padding-left: 22px;
  margin: 0;
}

.faq-answer > ul:not(.arrow-list) > li{
  margin: 4px 0;
  padding: 0;
  line-height: 1.4;
}


.faq-answer > ul.arrow-list{
  list-style: none !important;
  padding-left: 0 !important;
  margin: 12px 0 0 0 !important;
}

.faq-answer > ul.arrow-list > li{
  list-style: none !important;
  position: relative;
  padding-left: 18px;
  margin: 4px 0;
  line-height: 1.4;
}

.faq-etapes-ul > .faq-etapes-li{
  margin: 0 0 23px 0 !important;
}

.faq-etapes-subul{
  list-style: none;
  padding-left: 22px;
  margin-top: 2px;
  margin-bottom: 0;
}

.faq-etapes-subul > .faq-etapes-subli{
  margin: 2px 0;
  line-height: 1.35;
}


.faq-answer > ul.arrow-list > li::before{
  content: "\203A"; 
  position: absolute;
  left: 0;
  top: 0.15em;
  font-size: 1.05em;
  line-height: 1;
  color: #910e31;
  font-weight: 700;
}

.faq-works-ul .faq-works-li{
  padding-left: 15px;    
}

.faq-etapes-subul{
  list-style: none;
  padding-left: 0;      
  margin: 6px 0 0 0;
}
.faq-etapes-subul{
  list-style: none;
  padding-left: 22px;   
  margin: 6px 0 0 0;
}

.faq-etapes-subul .faq-etapes-subli{
  list-style: none;
  margin: 4px 0;
  padding: 0;
}

.faq-works-ul{
  padding-left: 40px !important; 
  margin: 0;
}

.faq-answer > ul{
  margin-top: 12px !important;
}
/* TRANSITION CARD CONTENT */
.transition-card {
  background: var(--card);
  height: auto;              
  border-radius: 8px;
  margin: 25px 0;
  padding: 25px;            
}

.transition-card-title {
  font-family: "MinionPro_Regular", serif;
  color: var(--red);
  font-size: 28px;
  margin: 8px 0 25px 0;
  text-align: left;
}

.transition-card-text {
  font-family: "Yummo_Regular", sans-serif;
  color: var(--text);
  font-size: 20px;
  line-height: 1.5;
  margin: 2px 0 10px 0;
}

.transition-card-text-semibold{
  font-family: "Yummo_Bold", sans-serif;
  color: var(--text);
  font-size: 22px;
  line-height: 1.5;
  margin: 2px 0 10px 0;
}

.transition-card-text:last-child {
  margin-bottom: 0;
}

.transition-card-text-bold {
  font-family: "Yummo_Bold", sans-serif;
  font-size: 22px; 
  padding: 10px 0 10px 0; 
  margin: 10px 0 0 0;
}

.transition-card-text-bold-red{
  color: var(--red);
  font-family: "Yummo_Bold", sans-serif;
  font-size: 22px; 
  padding: 20px 0 20px 0; 
  margin: 0;
}


@media (max-width: 768px) {
  .transition-card-title {
    font-size: 24px;
  }
}

.about-card{
  background: var(--card) !important;
  border-radius: 8px;
  padding: 25px;
  margin: 25px 0;
  display: block;
}

/*TRANSITION COMPARE CARD*/

.transition-card.transition-card--compare{
  background: var(--card) !important;
  border-radius: 14px !important;


  padding: 25px 25px !important;   
  margin: 10px 0 !important;

  display: flow-root !important;
}


.transition-card.transition-card--compare .transition-card-title{
  padding: 0 !important;
  line-height: 1.2;
}


.transition-card.transition-card--compare .transition-compare{
  margin-top: 0 !important;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  text-align: left;
}


.transition-compare-title{
  margin: 10px 0 20px 0 !important; 
  margin-bottom: 20px !important;   
  color: var(--text);
  text-align: center;
  font-family: "Yummo_Bold", sans-serif;
  font-size: 22px;
}

.transition-compare-title-left{
  margin: 10px 0 20px 0 !important;
  color: var(--text);
  text-align: left;
  font-family: "Yummo_Bold", sans-serif;
  font-size: 22px;
}


.transition-card.transition-card--compare .transition-compare-list{
  list-style: none;
  padding: 0;
  margin: 0;
}

.transition-card.transition-card--compare .transition-compare-list li{
  position: relative;
  padding-left: 0;      
  margin: 0 0 16px 0;
  line-height: 1.5;
  color: var(--text);
}

.transition-card.transition-card--compare .transition-compare-list li::before{
  content: none;      
}


.transition-card.transition-card--compare .transition-compare-col + .transition-compare-col{
  padding-left: 20px;
}

.transition-card.transition-card--compare .transition-compare-col + .transition-compare-col::before{
  content: "";
  position: absolute;
  left: -27px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(143,146,150,0.35);
}


.transition-card.transition-card--compare{
  margin: 25px 0 !important;
  padding: 25px 25px !important;
  border: 0;
  height: auto;         
  border-radius: 14px;  
  background: var(--card);
}

.transition-card.transition-card--compare .transition-card-title{
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/*subtitles semibold under compare card*/
.transition-card--compare .transition-subs{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  margin-top: 14px;
  padding: 0 60px;   
}

.transition-card--compare .transition-sub{
  font-family: "Yummo_Bold", sans-serif;
  font-weight: 600;
  color: var(--text);
  text-align: left;    
}




.transition-section h2.transition-title-red{
  color:#900d32 !important;
  font-family:"Yummo_Bold", sans-serif !important;
  font-size:24px !important;
}

.transition-card-title-center{
  display: block;
  width: 100%;
  text-align: center !important;


  color: #900d32 !important;
  font-family: "MinionPro_Regular", serif !important;
  font-size: 28px !important;
  line-height: 1.15;

  margin: 8px auto 40px auto !important;
  padding: 0 20px;  
}

@media (max-width: 768px){
  .transition-card.transition-card--compare{
    padding: 10px 20px !important;
  }

  .transition-card.transition-card--compare .transition-compare{
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .transition-card.transition-card--compare .transition-compare-col + .transition-compare-col{
    padding-left: 0;
  }

  .transition-card.transition-card--compare .transition-compare-col + .transition-compare-col::before{
    display: none;
  }
}

/*TRANSITION ADVANTAGES*/

.transition-card.transition-card--advantages{
  height: auto;
  padding: 25px 25px;
  border-radius: 14px;
  background: var(--card);
  display: flow-root;
}

.transition-card.transition-card--advantages .transition-compare{
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
  text-align: left;
}

.transition-card.transition-card--advantages .transition-compare-col{
  position: relative;
}

.transition-card.transition-card--advantages .transition-compare-col + .transition-compare-col{
  padding-left: 35px;
}



.transition-card.transition-card--advantages ul.transition-compare-list-advantages{
  list-style: none;
  padding: 0;
  margin: 12px 0 0 0;
}

.transition-card.transition-card--advantages ul.transition-compare-list-advantages > li{
  position: relative;
  padding-left: 22px;
  margin: 0 0 12px 0;
  line-height: 1.45;
  color: var(--text);
  font-family: "Yummo_SemiBold", sans-serif;
  font-weight: 600;
}

.transition-card.transition-card--advantages ul.transition-compare-list-advantages > li::before{
  content: "\203A";
  position: absolute;
  left: 0;
  top: 0;        
  transform: none;
  font-size: 1.40em;
  line-height: 1;
  color: #910e31;
  font-weight: 700;
}


.transition-card.transition-card--compare .transition-compare-list{
  list-style: none;
  padding: 0;
  margin: 0;
}

.transition-card.transition-card--compare .transition-compare-list > li{
  position: relative;
  padding-left: 22px;   
  margin: 0 0 10px 0;   
  line-height: 1.35;
  color: var(--text);
}

.transition-card.transition-card--compare .transition-compare-list > li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 14px;         
  height: 14px;
  background: url("../img/check.svg") center/contain no-repeat;
}

.transition-card.transition-card--compare .transition-compare-list > li:last-child{
  margin-bottom: 0;
}




.transition-card--compare .transition-compare{
  max-width: 760px;   
  margin: 0 auto;    
}

.transition-card--compare .transition-card-title-center{
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.transition-section .intro-text{
  margin-top: 30px;  
}


.transition-card.transition-card--compare ul.transition-compare-list-none{
  list-style: none !important;
  margin: 0 !important;
  padding: 0 0 0 18px !important;
}

.transition-card.transition-card--compare ul.transition-compare-list-none > li{
  list-style: none !important;
  margin: 0 0 10px 0;
  padding: 0;
}

.transition-card.transition-card--compare ul.transition-compare-list-none > li::before{
  content: none !important;
  background: none !important;
}

@media (max-width: 768px){
  .transition-card.transition-card--advantages .transition-compare{
    grid-template-columns: 1fr;
    gap: 0px;
  }

  .transition-card.transition-card--advantages .transition-compare-col + .transition-compare-col{
    padding-left: 0;
    margin-top: 0;
  }

  .transition-card.transition-card--advantages .transition-compare-col + .transition-compare-col::before{
    display: none;
  }
}
/* REALISATIONS SECTION*/
.realisations-section{
  max-width: 900px;
  margin: 0 auto 20px;
}

.realisations-hint{
  margin: 8px 0 18px;
  font-size: 16px;
  opacity: .8;
}

/* slider wrapper */
.realisations-slider{
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}

/* viewport */
.realisations-viewport{
  overflow: hidden;
  width: 100%;
}

/* track */
.realisations-track{
  display: flex;
  gap: 18px;
  transition: transform .35s ease;
  will-change: transform;
}

/* each slide = 3 visible */
.realisations-slide{
  flex: 0 0 calc((100% - 36px) / 3); /* 3 slike vidljive, 2x gap 18px */
}

/* photo */
.realisations-photo{
  width: 100%;
  height: 340px;      /* VEĆE + DUŽE */
  object-fit: cover;
  border-radius: 12px;
  display: block;
  transition: transform .25s ease;
}

.realisations-photo:hover{
  transform: scale(1.03);
}

/* button reset */
.realisations-lightbox-btn{
  all: unset;
  cursor: pointer;
  display: block;
  width: 100%;
}

/* nav arrows */
.realisations-nav{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eee;
}

.realisations-nav:hover{
  opacity: .85;
}

/* responsive */
@media (max-width: 900px){
  .realisations-slide{
    flex: 0 0 calc((100% - 18px) / 2);
  }
  .realisations-photo{ height: 320px; }
}

@media (max-width: 600px){
  .realisations-slide{
    flex: 0 0 100%;
  }
  .realisations-photo{ height: 300px; }
}

/* ============================
   LIGHTBOX
   ============================ */

.realisations-lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 9999;
}

.realisations-lightbox.open{
  opacity: 1;
  pointer-events: auto;
}

.realisations-lightbox img{
  max-width: 90%;
  max-height: 90vh;
  border-radius: 8px;
}

.lightbox-close{
  position: absolute;
  top: 20px;
  left: 24px;
  font-size: 32px;
  color: #fff;
  background: none;
  border: 0;
  cursor: pointer;
}

.lightbox-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 48px;
  color: #fff;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 10px;
}

.lightbox-prev{ left: 20px; }
.lightbox-next{ right: 20px; }

.lightbox-nav:hover,
.lightbox-close:hover{
  opacity: .7;
}


.about-card .about-subtitle{
  margin-bottom: 18px;
}

/* TIMELINE  */
.timeline{
  --max-dot: clamp(120px, 10vw, 170px);
  --min-dot: clamp(90px, 8vw, 120px);

  --label-row: 150px;
  --label-gap: 12px;

  --tick-color: rgba(143,146,150,0.55);
  --tick-gap-to-circle: 10px;

  --item-gap: clamp(14px, 2vw, 28px);

  --red: #910e31;
  --line-h: 2px;

  --ring: 4px;


  --bg: #fefcef;

  position: relative;
  margin-top: 6px;
  width: 100%;
  padding: 10px 28px 14px;
  box-sizing: border-box;

    --scale: 1;
  transform: scale(var(--scale));
  transform-origin: top center;
}

body.page-template-page-lp-front-second .about-section .about-card,
.page-template-page-lp-front-second .about-section .about-card,
body.page-template-page-lp-front-third .about-section .about-card{
  background: transparent !important;
}


.timeline-line,
.timeline-line img{ display:none !important; }

.timeline-items{
  position: relative;
  display:flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  gap: var(--item-gap);
  width: 100%;
  max-width: 100%;
}

/* item */
.timeline-item{
  flex: 0 1 auto;
  min-width: 0;

  display: grid;
  grid-template-rows: var(--label-row) var(--max-dot) var(--label-row);
  justify-items: center;
  align-items: center;
  text-align: center;
  position: relative;
}


.timeline-item:nth-child(odd){ --dot-size: var(--max-dot); }
.timeline-item:nth-child(even){ --dot-size: var(--min-dot); }

/* DOT */
.timeline-dot{
  grid-row: 2;
  width: var(--dot-size);
  height: var(--dot-size);
  position: relative;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index: 2;


  background: var(--bg);
  border: var(--ring) solid var(--red);
  border-radius: 50%;
  box-sizing: border-box;
}

body.page-template-page-lp-front-second .timeline-dot,
.page-template-page-lp-front-third .timeline-dot
{
  grid-row: 2;
  width: var(--dot-size);
  height: var(--dot-size);
  position: relative;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index: 2;


  background: #ffffff;
  border: var(--ring) solid var(--red);
  border-radius: 50%;
  box-sizing: border-box;
}

.timeline-circle{ display:none !important; }

/* date */
.timeline-date{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:"Yummo_Regular", sans-serif;
  color: var(--red);
  font-size: clamp(14px, calc(var(--dot-size) / 11), 18px);
  line-height: 1;
}


.timeline-item:not(:last-child) .timeline-dot::after{
 content:"";
  position:absolute;
  top: 50%;
  left: 100%;                        
  transform: translateY(-50%);       
  width: calc(var(--item-gap) + 12px);
  height: var(--line-h);
  background: var(--red);
  z-index: 1;
}

/* LABELS */
.timeline-label{
  width: min(180px, 100%);
  max-width: 100%;
  font-size: clamp(13px, 1.15vw, 18px);
  line-height: 1.2;
  color: var(--text);
  position: relative;
  text-align: center;
}

.timeline-label--top{
  grid-row: 1;
  align-self: end;
  margin-bottom: var(--label-gap);
}

.timeline-label--bottom{
  grid-row: 3;
  align-self: start;
  margin-top: var(--label-gap)
}


.timeline-item{ --half-dot: calc(var(--dot-size) / 2); }

.timeline-label--top::after,
.timeline-label--bottom::before{
  content:"";
  position:absolute;
  left:50%;
  width: 1px;
  background: var(--tick-color);
  transform: translateX(-50%);
  height: calc(var(--half-dot) + 60px) !important;
}
.timeline-label--top::after{ top: 100%; }
.timeline-label--bottom::before{ bottom: 100%; }

/* MOBILE */
@media (max-width: 768px){

  .timeline{
    padding: 18px 16px 5px;

  
    --m-gap: 6px;          
    --m-line-w: 2px;     
    --m-line-h: 10px;      

 
    --m-label-w: 170px;
    --m-label-font: 14px;

   
    --m-left-gap: 18px;
    --m-right-gap: 18px;


    --m-left-y: 0px;
    --m-right-y: -6px;
  }


  .timeline-items{
    display: grid !important;
    grid-template-columns: 1fr;
    justify-items: center;
    width: 100%;

   
    gap: var(--m-gap) !important;
  }

 
  .timeline-item{
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;  
    justify-items: center;
    align-items: center;
    text-align: center;
    min-height: auto;
    padding: 0 !important;
  }

  
  .timeline-item:nth-child(odd){ --dot-size: 130px; }
  .timeline-item:nth-child(even){ --dot-size: 105px; }

  .timeline-dot{
    width: var(--dot-size);
    height: var(--dot-size);
    position: relative;
    z-index: 2;

    
    grid-row: auto !important;

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

  
  .timeline-item:not(:last-child) .timeline-dot::after{
    display:none !important;
  }

  .timeline-item:not(:last-child) .timeline-dot::before{
    content:"";
    position:absolute;
    left: 50%;
    top: calc(100% + 2px);
    transform: translateX(-50%);
    width: var(--m-line-w);
    height: var(--m-line-h);
    background: var(--red);
    z-index: 1;
  }


  .timeline-label--top::after,
  .timeline-label--bottom::before{
    display:none !important;
  }

  .timeline-label--top,
  .timeline-label--bottom{
    margin: 0 !important;
  }


  .timeline-label{
    position: absolute;
    top: 50%;
    width: var(--m-label-w);
    font-size: var(--m-label-font);
    line-height: 1.25;
    color: var(--text);
    opacity: 0.95;
    margin: 0;
    padding: 0;
    word-break: normal;
    overflow-wrap: anywhere;
    hyphens: auto;
  }


  .timeline-item:nth-child(odd) .timeline-label{
    left: calc(50% - (var(--dot-size) / 2) - var(--m-left-gap) - var(--m-label-w));
    text-align: right;
    transform: translateY(-50%) translateY(var(--m-left-y));
  }


  .timeline-item:nth-child(even) .timeline-label{
    left: calc(50% + (var(--dot-size) / 2) + var(--m-right-gap));
    text-align: left;
    transform: translateY(-50%) translateY(var(--m-right-y));
  }


  .timeline-item:last-child .timeline-label{
    font-size: 13px;
    line-height: 1.2;
  }

  
  

  .timeline-label{
    z-index: 5;
    width: 140px;          
    font-size: 13px;       
    line-height: 1.2;
    opacity: 0.95;
  }


  .timeline-item:nth-child(odd) .timeline-label{
    left: calc(50% - (var(--dot-size) / 2) - 12px - 140px);
  }

  .timeline-item:nth-child(even) .timeline-label{
    left: calc(50% + (var(--dot-size) / 2) + 12px);
    transform: translateY(-50%); 
  }


  @media (max-width: 390px){
    .timeline-label{ width: 130px; font-size: 12px; }
    .timeline-item:nth-child(odd) .timeline-label{
      left: calc(50% - (var(--dot-size) / 2) - 10px - 130px);
    }
    .timeline-item:nth-child(even) .timeline-label{
      left: calc(50% + (var(--dot-size) / 2) + 10px);
    }
  }


  
}

@media (max-width: 1200px){
  .timeline{ --scale: 0.92; }
}

@media (max-width: 992px){
  .timeline{ --scale: 0.86; }
}


/* FOOTER */

body.page-template-page-lp-front .footer,
.page-template-page-lp-front-second .footer,
.page-template-page-lp-front-third .footer{
  background: #910e31;
  color: #fff;
  padding: 40px 28px;
  text-align: center;
  font-family: "Yummo_Regular", sans-serif;
}

body.page-template-page-lp-front .footer-inner,
.page-template-page-lp-front-second .footer-inner,
.page-template-page-lp-front-third .footer-inner{
  max-width: 820px;
  margin: 0 auto;
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* logo */
body.page-template-page-lp-front .footer-logo img,
.page-template-page-lp-front-second .footer-logo img,
.page-template-page-lp-front-third .footer-logo img{
  width: 275px;
  height: auto;
  display: block;
  margin: 0 auto 28px;
}

/* copyright */
body.page-template-page-lp-front .footer-copyright,
.page-template-page-lp-front-second .footer-copyright,
.page-template-page-lp-front-third .footer-copyright{
  margin: 0 0 14px;
  font-size: 19px;
  line-height: 1.35;
  color: #fff;
}

/* CONTACT */
body.page-template-page-lp-front .footer-contact,
.page-template-page-lp-front-second .footer-contact,
.page-template-page-lp-front-third .footer-contact{
  margin: 0 0 18px;
  width: 100%;
}

body.page-template-page-lp-front .footer-contact-row,
.page-template-page-lp-front-second .footer-contact-row,
.page-template-page-lp-front-third .footer-contact-row{
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  justify-content: center;
  column-gap: 14px;
  font-size: 18px;
  line-height: 1.15;
}

body.page-template-page-lp-front .footer-contact-title,
.page-template-page-lp-front-second .footer-contact-title,
.page-template-page-lp-front-third .footer-contact-title{
  font-family: "Yummo_Bold", sans-serif;
  font-weight: 700;
  white-space: nowrap;
}

/* phones */
body.page-template-page-lp-front .footer-contact-phones,
body.page-template-page-lp-front-second .footer-contact-phones,
body.page-template-page-lp-front-third .footer-contact-phones{
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0;                     
  line-height: 1.15;
  white-space: nowrap;
  position: relative;
  padding: 0 18px;            
}

body.page-template-page-lp-front .footer-contact-phones::before,
body.page-template-page-lp-front-second .footer-contact-phones::before,
body.page-template-page-lp-front-third .footer-contact-phones::before,


body.page-template-page-lp-front .footer-contact-phones::after,
body.page-template-page-lp-front-second .footer-contact-phones::after,
body.page-template-page-lp-front-third .footer-contact-phones::after{
  content: " - ";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 700;
  opacity: 0.9;
  color: #fff;
}
body.page-template-page-lp-front .footer-contact-phones::before{ left: 0; }
body.page-template-page-lp-front-second .footer-contact-phones::before{ left: 0; }
body.page-template-page-lp-front-third .footer-contact-phones::before{ left: 0; }
body.page-template-page-lp-front .footer-contact-phones::after{ right: 0; }
body.page-template-page-lp-front-second .footer-contact-phones::after{ right: 0; }
body.page-template-page-lp-front-third .footer-contact-phones::after{ right: 0; }


/* phone bold (SCOPED) */
body.page-template-page-lp-front .footer-phone,
body.page-template-page-lp-front-second .footer-phone,
body.page-template-page-lp-front-third .footer-phone
{
  font-family: "Yummo_Bold", sans-serif;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}
body.page-template-page-lp-front .footer-phone:hover,
body.page-template-page-lp-front-second .footer-phone:hover,
body.page-template-page-lp-front-third .footer-phone:hover{
  text-decoration: none;
}

/* email  */
body.page-template-page-lp-front .footer-email,
body.page-template-page-lp-front-second .footer-email,
body.page-template-page-lp-front-third .footer-email
{
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  position: static;
  padding-left: 0;
  font-family: "Yummo_Bold", sans-serif;
  font-weight: 700;
}
body.page-template-page-lp-front .footer-email::before,
body.page-template-page-lp-front-second .footer-email::before,
body.page-template-page-lp-front-third .footer-email::before
{
  content: none !important;
  display: none !important;
}
body.page-template-page-lp-front .footer-email:hover,
body.page-template-page-lp-front-second .footer-email:hover,
body.page-template-page-lp-front-third .footer-email:hover{

  text-decoration: none;
}

/* QUESTION + BUTTON */
body.page-template-page-lp-front .footer-question,
body.page-template-page-lp-front-second .footer-question,
body.page-template-page-lp-front-third .footer-question{

  margin: 18px 0 28px;         
  font-size: 18px;
  line-height: 1.25;
  color: #fff;
}

body.page-template-page-lp-front .footer-btn,
body.page-template-page-lp-front-second .footer-btn,
body.page-template-page-lp-front-third .footer-btn{
  display: inline-block;      
  min-width: 260px;           
  text-align: center;

  padding: 14px 34px;        
  border-radius: 8px;          
  box-sizing: border-box;

  background: var(--white);
  color: var(--red);
  font-family: "Yummo_Bold", sans-serif;
  font-weight: 700;
  text-decoration: none;

  transition: 0.2s ease;
  border: none;
  box-shadow: none;

  white-space: nowrap;
  line-height: 1.2;
  margin-top: 0;
}

body.page-template-page-lp-front .footer-btn:hover,
body.page-template-page-lp-front-second .footer-btn:hover,
body.page-template-page-lp-front-third .footer-btn:hover{
  opacity: 0.85;
}

body.page-template-page-lp-front .footer-btn:focus,
body.page-template-page-lp-front-second .footer-btn:focus,
body.page-template-page-lp-front-third .footer-btn:focus,
body.page-template-page-lp-front .footer-btn:focus-visible,
body.page-template-page-lp-front-second .footer-btn:focus-visible,
body.page-template-page-lp-front-third .footer-btn:focus-visible{

  outline: 4px solid rgba(255,255,255,0.95);
  outline-offset: 4px;
}

@media (max-width: 768px){

  body.page-template-page-lp-front .footer,
  body.page-template-page-lp-front-second .footer,
  body.page-template-page-lp-front-third .footer,

  body.page-template-page-lp-offre .footer{
    padding: 32px 18px;
  }

  body.page-template-page-lp-front .footer-logo img,
  body.page-template-page-lp-front-second .footer-logo img,
  body.page-template-page-lp-front-third .footer-logo img,

  body.page-template-page-lp-offre .footer-logo img{
    width: 150px;
    margin-bottom: 10px;
  }

  body.page-template-page-lp-front .footer-copyright,
  body.page-template-page-lp-front-second .footer-copyright,
  body.page-template-page-lp-front-third .footer-copyright,

  body.page-template-page-lp-offre .footer-copyright{
    font-size: 16px;
    margin-bottom: 12px;
  }

  body.page-template-page-lp-front .footer-contact-row,
  body.page-template-page-lp-front-second .footer-contact-row,
  body.page-template-page-lp-front-third .footer-contact-row,

  body.page-template-page-lp-offre .footer-contact-row{
    grid-template-columns: 1fr;
    row-gap: 6px;
    font-size: 16px;
  }

  body.page-template-page-lp-front .footer-contact-phones,
  body.page-template-page-lp-front-second .footer-contact-phones,
  body.page-template-page-lp-front-third .footer-contact-phones,

  body.page-template-page-lp-offre .footer-contact-phones{
    padding: 0;
  }

  body.page-template-page-lp-front .footer-contact-phones::before,
  body.page-template-page-lp-front-second .footer-contact-phones::before,
  body.page-template-page-lp-front-third .footer-contact-phones::before,

  body.page-template-page-lp-front .footer-contact-phones::after,
  body.page-template-page-lp-front-second .footer-contact-phones::after,
  body.page-template-page-lp-front-third .footer-contact-phones::after,

  body.page-template-page-lp-offre .footer-contact-phones::before,
  body.page-template-page-lp-offre .footer-contact-phones::after{
    display: none;
  }

  body.page-template-page-lp-front .footer-question,
  body.page-template-page-lp-front-second .footer-question,
  body.page-template-page-lp-front-third .footer-question,

  body.page-template-page-lp-offre .footer-question{
    margin: 14px 0 24px;
    font-size: 16px;
  }

  body.page-template-page-lp-front .footer-btn,
  body.page-template-page-lp-front-second .footer-btn,
  body.page-template-page-lp-front-third .footer-btn,

  body.page-template-page-lp-offre .footer-btn{
    width: 260px;
    max-width: 100%;
    min-width: 0;
    margin-bottom: 24px;
  }

  
  body.page-template-page-lp-offre .demande-wrapper{
    margin-bottom: 90px !important;
  }
}



body.page-template-page-lp-front .faq-item.open .faq-answer,
body.page-template-page-lp-front-second .faq-item.open .faq-answer,
body.page-template-page-lp-front-third .faq-item.open .faq-answer
{
  background: var(--card) !important;
  padding: 0 20px 20px 20px !important;
  border-radius: 0 0 12px 12px;
}


body.page-template-page-lp-front .footer,
body.page-template-page-lp-front-second .footer,
body.page-template-page-lp-front-third .footer,
body.page-template-page-lp-offre .footer{
  font-size: 20px !important;
  line-height: 29px !important;
}

/* Mobile: force identical too */
@media (max-width: 768px){
  body.page-template-page-lp-front .footer,
  body.page-template-page-lp-front-second .footer,
  body.page-template-page-lp-front-third .footer,
  body.page-template-page-lp-offre .footer{
    font-size: 16px !important;
    line-height: 1.35 !important;
  }
}

/*  FOOTER */
@media (max-width: 768px){

  body.page-template-page-lp-front .footer,
  body.page-template-page-lp-front-second .footer,
  body.page-template-page-lp-front-third .footer,
  body.page-template-page-lp-offre .footer{
    padding: 32px 18px !important;
    font-size: 16px !important;
    line-height: 1.35 !important;
  }

 
  body.page-template-page-lp-front .footer *,
  body.page-template-page-lp-front-second .footer *,
  body.page-template-page-lp-front-third .footer *,
  body.page-template-page-lp-offre .footer *{
    font-size: inherit !important;
    line-height: inherit !important;
  }

  body.page-template-page-lp-front .footer-inner,
  body.page-template-page-lp-front-second .footer-inner,
  body.page-template-page-lp-front-third .footer-inner,
  body.page-template-page-lp-offre .footer-inner{
    max-width: 820px !important;
    padding: 0 10px !important;
  }

  body.page-template-page-lp-front .footer-logo img,
  body.page-template-page-lp-front-second .footer-logo img,
  body.page-template-page-lp-front-third .footer-logo img,
  body.page-template-page-lp-offre .footer-logo img{
    width: 150px !important;
    margin-bottom: 10px !important;
  }

  body.page-template-page-lp-front .footer-copyright,
  body.page-template-page-lp-front-second .footer-copyright,
  body.page-template-page-lp-front-third .footer-copyright,
  body.page-template-page-lp-offre .footer-copyright{
    margin-bottom: 12px !important;
  }

  body.page-template-page-lp-front .footer-contact-row,
  body.page-template-page-lp-front-second .footer-contact-row,
  body.page-template-page-lp-front-third .footer-contact-row,
  body.page-template-page-lp-offre .footer-contact-row{
    grid-template-columns: 1fr !important;
    row-gap: 6px !important;
  }

  body.page-template-page-lp-front .footer-contact-phones,
  body.page-template-page-lp-front-second .footer-contact-phones,
  body.page-template-page-lp-front-third .footer-contact-phones,
  body.page-template-page-lp-offre .footer-contact-phones{
    padding: 0 !important;
    gap: 0 !important;
  }

  body.page-template-page-lp-front .footer-contact-phones::before,
  body.page-template-page-lp-front-second .footer-contact-phones::before,
  body.page-template-page-lp-front-third .footer-contact-phones::before,
  body.page-template-page-lp-front .footer-contact-phones::after,
  body.page-template-page-lp-front-second .footer-contact-phones::after,
  body.page-template-page-lp-front-third .footer-contact-phones::after,
  body.page-template-page-lp-offre .footer-contact-phones::before,
  body.page-template-page-lp-offre .footer-contact-phones::after{
    display: none !important;
  }

  body.page-template-page-lp-front .footer-question,
  body.page-template-page-lp-front-second .footer-question,
  body.page-template-page-lp-front-third .footer-question,
  body.page-template-page-lp-offre .footer-question{
    margin: 14px 0 24px !important;
  }

  body.page-template-page-lp-front .footer-btn,
  body.page-template-page-lp-front-second .footer-btn,
  body.page-template-page-lp-front-third .footer-btn,
  body.page-template-page-lp-offre .footer-btn{
    width: 260px !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-bottom: 24px !important;
  }

  /* FIX: transition-sub mobile */



  .transition-card--compare .transition-subs{
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;

    padding: 0 0 !important;     
    margin-top: 12px !important;
  }

  .transition-card--compare .transition-sub{
    text-align: center !important;   
    font-size: 20px !important;      
    line-height: 1.3 !important;
  }

 
  .transition-compare-title-left{
    text-align: center !important;
  }


}


/* toggle wrapper par reqest Ilija */

.transition-card--toggle .transition-toggle{
  width: 100%;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;

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

  cursor: pointer;
  text-align: left;
}


.transition-card--toggle .transition-toggle .transition-card-title{
  margin: 8px 0 25px 0; 
}


.transition-card--toggle .faq-arrow{
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}


.transition-card--toggle .faq-answer{
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
  background: transparent; 
}


.transition-card--toggle.open .faq-answer{
  max-height: 2000px;
}





/*LANDING PAGR VR.2*/
/* LOGO MARQUEE */
.logo-marquee{
  width: 100%;
  background: var(--band);
  padding: 30px 0;
  overflow: hidden;
}


.logo-marquee__inner{
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  overflow: hidden;

  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.logo-marquee,
.logo-marquee__inner{
  position: relative;
  z-index: 2;
}

.logo-marquee__track{
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
  animation: logoMarquee 16s linear infinite;
}

.logo-marquee__group{
  display: flex;
  align-items: center;
  gap: 34px;
  padding-right: 34px;   
  flex: 0 0 auto;
}

.logo-marquee__item{
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-marquee__item img{
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
  opacity: .95;
}

.logo-marquee-link{
  display: block;
  text-decoration: none;
  color: inherit;
}

@keyframes logoMarquee{
  from { transform: translate3d(0,0,0); }
  to   { transform: translate3d(-50%,0,0); }
}

@media (hover:hover){
  .logo-marquee__inner:hover .logo-marquee__track{
    animation-play-state: paused !important;
  }
}

@media (max-width: 768px){
  .logo-marquee{ padding: 22px 0; }

  /* brzina: na pravom mobu ti je sporo jer je track uži => smanji trajanje */
  .logo-marquee__track{
    animation-duration: 12s; /* probaj 6–9s dok ne sjedne */
    transform: translate3d(0,0,0);
    -webkit-transform: translate3d(0,0,0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }

  .logo-marquee__group{
    gap: 22px;
    padding-right: 22px;
  }

  .logo-marquee__item img{ height: 32px; }
}

/* iOS fix: makni mask jer zna radit “nestane pa se vrati” */
@supports (-webkit-touch-callout: none){
  @media (max-width: 768px){
    .logo-marquee__inner{
      -webkit-mask-image: none;
      mask-image: none;
    }
  }
}


@media (prefers-reduced-motion: reduce){
  .logo-marquee__track{ animation: none; transform: none; }
}


/* VIDEO SECTION (LP2) */

/*HERO VIDEO*/

.hero-video{
  width: 100%;
}

.hero-video__media{
  position: relative;
  width: 100%;
  height: clamp(520px, 78vh, 980px);
  overflow: hidden;
  background: #000;
}

/* VIDEO */
.hero-video__video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
  pointer-events: none;
  user-select: none;
}

/* FADE */
.hero-video__overlay{
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to right,
    rgba(0,0,0,.86) 0%,
    rgba(0,0,0,.68) 28%,
    rgba(0,0,0,.38) 48%,
    rgba(0,0,0,.12) 62%,
    rgba(0,0,0,0) 78%
  );
}

/* CONTENT (desktop) */
.hero-video__content{
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding-left: clamp(28px, 7vw, 110px);
  padding-right: 20px;
  color: #fff;
}

.hero-video__stack{
  max-width: min(560px, 54vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-video__eyebrow{
  font-family: "Minion Pro","Minion","Georgia",serif;
  font-size: clamp(28px, 2.2vw, 34px);
  letter-spacing: .28em;
  text-transform: uppercase;
  opacity: .95;
  margin: 0 0 20px;
}

.hero-video__logo{
  display: block;
  width: clamp(260px, 30vw, 560px);
  height: auto;
  margin: 0 0 22px;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.35));
}

.hero-video__sub{
  font-family: "Minion Pro","Minion","Georgia",serif;
  font-size: clamp(18px, 2.2vw, 34px);
  letter-spacing: .02em;
  opacity: .95;
  margin: 0 0 30px;
}

.hero-video__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 34px;
  border: 2px solid rgba(255,255,255,.92);
  border-radius: 16px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  transition: transform .15s ease, background .15s ease;
}

.hero-video__btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.12);
}

@media (max-width: 768px){

  body.page-template-page-lp-front-second .hero-video__content,
  body.page-template-page-lp-front-second .hero-video__overlay,
  body.page-template-page-lp-front-third .hero-video__overlay,
  body.page-template-page-lp-front-third .hero-video__content{
    display: none !important;
  }

  body.page-template-page-lp-front-second .hero-video__media,
  body.page-template-page-lp-front-third .hero-video__media{
    width: 100vw;
    margin-left: calc(50% - 50vw); 
    height: 320px;                 
    overflow: hidden;
    background: #000;
  }

  body.page-template-page-lp-front-second .hero-video__video,
  body.page-template-page-lp-front-third .hero-video__video{
    width: 100%;
    height: 100%;
    object-fit: cover !important;     
    object-position: center center;
    display: block;
  }
}

/* VEĆI EKRANI */
@media (min-width: 1400px){
  .hero-video__video{
    object-position: center 35%;
  }
}
@media (min-width: 1800px){
  .hero-video__media{
    height: clamp(620px, 72vh, 1050px);
  }
  .hero-video__video{
    object-position: center 32%;
  }
}


/*FAVORITE MODELS SECTION*/

.fav-models{
  padding: clamp(28px, 4vw, 60px) 0; 
  background: #fff;
  color:#6d7074;
}

.fav-models__inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.fav-models__kicker{
  margin: 0 0 18px;
  font-size: 20px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-family: "Yummo_Bold", serif;
}


.fav-models__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.fav-card{
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.fav-card__media{
  aspect-ratio: 4 / 3;
  background: #f3f3f3;
  overflow: hidden;
}

.fav-card__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fav-card__body{
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  text-align: left;
}

.fav-card__name{
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

body.page-template-page-lp-front-second
.favorits-comment,
body.page-template-page-lp-front-third
.favorits-comment{
  font-weight: 400 !important;
  font-family: inherit !important;
  margin: 0 auto;
  max-width: 900px;
  text-align: center;
  line-height: 1.6;
}

.fav-card__desc{
  margin: 0;
  font-size: 13px;
  flex: 1;              
  min-height: 3.2em;   
  color: #6d7074;
}

.fav-card__rule{
  height: 1px;
  background: rgba(0,0,0,.12);
  margin: 6px 0 8px;
}

.fav-card__meta{
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;

  padding-top: 10px;     
  padding-bottom: 14px; 
}

.fav-card__price{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  align-items: center;  
  color:#6d7074;
}

.fav-card__from{
  font-size: 13px;

}

.fav-card__amount{
  font-size: 22px;
  font-weight: 800;

}

.fav-card__badge{
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.06);
  white-space: nowrap;
}

.fav-card__cta{
  margin-top: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;

  background: var(--red);
  color: #fff;
}

.fav-card__cta:hover{
  filter: brightness(0.95);
}

@media (max-width: 980px){
  .fav-models__grid{
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
}


/*HERO CARDS FOR LPV2*/


.lp-two{
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}

.lp-two__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: stretch;

}

/* CARD */
.lp-two__card{
  background: #fefcef;
  border-radius: 16px;
  padding: 32px 32px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;           
  height: 100%;      
}

/* TITLE */
.lp-two__title{
  color: var(--red);
  font-family: "Yummo_Bold", serif;
  font-size: 28px;
  line-height: 1.2;
  text-align: center;
  margin: 0;
}

/* INTRO */
.lp-two__intro{
  color: var(--text);
  font-family: "Yummo_Bold", serif;
  font-size: 20px;
  line-height: 1.5;
  margin: 0;
}

/* LIST */
.lp-two__list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
}

.lp-two__list li{
  position: relative;
  padding-left: 34px;
  color: var(--text);
  font-size: 20px;
  line-height: 1.65;
}

/* CHECK ICON */
.lp-two__list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 18px;
  height: 18px;
  background: url("../img/check.svg") no-repeat center / contain;
}

.lp-two__btn{
  margin-top: auto;   
}

.page-lp-front-second .lp-two .btn-red,
.page-lp-front-third .lp-two .btn-red{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  border-radius: 14px;
  margin: 0;                 
}

/* MOBILE */
@media (max-width: 768px){
  .lp-two__grid{
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .lp-two{
    margin: 40px auto;
  }

  body.page-template-page-lp-front-second .lp-two .btn-red,
  body.page-template-page-lp-front-third .lp-two .btn-red{
    width: auto !important;       
    min-width: 260px !important;   
    display: inline-flex !important;
    justify-content: center;
    align-self: center !important; 
    margin-bottom: 0 !important;
}
}

/* REVIEWS / FAQ SECTION (LP2)   */


body.page-template-page-lp-front-second
.reviews-section--accordion,
body.page-template-page-lp-front-third 
.reviews-section--accordion{
  max-width: 900px;
  margin: 0 auto 60px;
}

body.page-template-page-lp-front-second
.reviews-section--accordion
.reviews-grid,
body.page-template-page-lp-front-third
.reviews-section--accordion
.realisations-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px 25px;
  align-items: start;
}


/* REVIEW ITEMS */


body.page-template-page-lp-front-second
.reviews-section--accordion
.faq-item.review-item,
body.page-template-page-lp-front-third
.reviews-section--accordion
.faq-item.review-item{
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}


body.page-template-page-lp-front-second
.reviews-section--accordion
.review-question,
body.page-template-page-lp-front-third
.reviews-section--accordion
.review-question{
  all: unset;
  width: 100%;
  display: flex;
  align-items: center;
  cursor: inherit;
}

body.page-template-page-lp-front-second
.reviews-section--accordion
.review-author,
body.page-template-page-lp-front-third
.reviews-section--accordion
.review-author{
  font-family: "Yummo_Bold", serif;
  font-size: 20px;
  line-height: 1.35;
  color: var(--text);
  margin: 0;
}


body.page-template-page-lp-front-second
.reviews-section--accordion
.review-question .faq-arrow,
body.page-template-page-lp-front-third
.reviews-section--accordion
.review-question .faq-arrow{
  display: none !important;
}

/* ANSWER / TEXT*/


body.page-template-page-lp-front-second
.reviews-section--accordion
.faq-answer,
body.page-template-page-lp-front-third
.reviews-section--accordion
.faq-answer{
  max-height: 0;
  overflow: hidden;
  padding: 0;
  margin: 0;
  background: transparent;
  transition: max-height .25s ease, padding .2s ease;
}

body.page-template-page-lp-front-second
.reviews-section--accordion
.review-text,
body.page-template-page-lp-front-third
.reviews-section--accordion
.review-text{
  margin: 0;
  max-width: 100%;
  font-size: 18px;
  line-height: 1.55;
  color: var(--text);
}



/* ROW TOGGLE  */


body.page-template-page-lp-front-second
.reviews-section--accordion
.reviews-row,
body.page-template-page-lp-front-third
.reviews-section--accordion
.reviews-row{
  position: relative;
  margin-bottom: 35px;
  cursor: pointer;
}


body.page-template-page-lp-front-second
.reviews-section--accordion
.reviews-row-toggle,
body.page-template-page-lp-front-third
.reviews-section--accordion
.reviews-row-toggle{
  all: unset;
  position: absolute;
  top: 2px;
  right: -4px;
  padding: 4px 6px;
  cursor: pointer;
  z-index: 2;
}

body.page-template-page-lp-front-second
.reviews-section--accordion
.reviews-row-toggle .faq-arrow,
body.page-template-page-lp-front-third
.reviews-section--accordion
.reviews-row-toggle .faq-arrow{
  width: 16px;
  height: 16px;
  display: block;
  transition: transform .25s ease;
}

body.page-template-page-lp-front-second
.reviews-section--accordion
.reviews-row.is-open
.reviews-row-toggle .faq-arrow,
body.page-template-page-lp-front-third
.reviews-section--accordion
.reviews-row.is-open
.reviews-row-toggle .faq-arrow{
  transform: rotate(180deg);
}


body.page-template-page-lp-front-second
.reviews-section--accordion
.reviews-row.is-open
.faq-answer,
body.page-template-page-lp-front-third
.reviews-section--accordion
.reviews-row.is-open
.faq-answer{
  padding-top: 14px;
}


/* MOBIL*/


@media (max-width: 768px){
  body.page-template-page-lp-front-second
  .reviews-section--accordion
  .reviews-grid,
    body.page-template-page-lp-front-third
  .reviews-section--accordion
  .reviews-grid{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  body.page-template-page-lp-front-second
  .reviews-section--accordion
  .reviews-row-toggle,
    body.page-template-page-lp-front-third
  .reviews-section--accordion
  .reviews-row-toggle{
    right: 0;
    top: 0;
  }

  body.page-template-page-lp-front-second
  .reviews-section--accordion
  .reviews-row.is-open
  .review-question,
    body.page-template-page-lp-front-third
  .reviews-section--accordion
  .reviews-row.is-open
  .review-question{
    justify-content: center;
    text-align: center;
  }

  body.page-template-page-lp-front-second
  .reviews-section--accordion
  .reviews-row.is-open
  .review-author,
    body.page-template-page-lp-front-third
  .reviews-section--accordion
  .reviews-row.is-open
  .review-author{
    display: block;
    text-align: center;
  }

}
body.page-template-lp-front-second
.reviews-section--accordion
.review-question .faq-arrow,
body.page-template-lp-front-third
.reviews-section--accordion
.review-question .faq-arrow{
  display: none !important;
}

/* row wrapper */
body.page-template-page-lp-front-second
.reviews-section--accordion
.reviews-,
body.page-template-page-lp-front-third
.reviews-section--accordion
.reviews-row{
  position: relative;
  margin: 0 auto 35px;
}


body.page-template-page-lp-front-second
.reviews-section--accordion
.reviews-row-toggle,
body.page-template-page-lp-front-third
.reviews-section--accordion
.reviews-row-toggle{
  all: unset;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  padding: 6px;
  z-index: 2;
}

body.page-template-page-lp-front-second
.reviews-section--accordion
.reviews-row-toggle .faq-arrow,
body.page-template-page-lp-front-third
.reviews-section--accordion
.reviews-row-toggle .faq-arrow{
  width: 14px;
  height: 14px;
  transition: transform .25s ease;
}


body.page-template-page-lp-front-second
.reviews-section--accordion
.reviews-row.is-open
.reviews-row-toggle .faq-arrow,
body.page-template-page-lp-front-third
.reviews-section--accordion
.reviews-row.is-open
.reviews-row-toggle .faq-arrow{
  transform: rotate(180deg);
}


body.page-template-page-lp-front-second
.reviews-section--accordion
.reviews-row .faq-answer,
body.page-template-page-lp-front-third
.reviews-section--accordion
.reviews-row .faq-answer{
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}


body.page-template-page-lp-front-second
.reviews-section--accordion
.review-question,
body.page-template-page-lp-front-third
.reviews-section--accordion
.review-question{
  cursor: pointer;
}


/* ETAPES SECTION  */
body.page-template-page-lp-front-second
.transition-section--etapes,
body.page-template-page-lp-front-third
.transition-section--etapes{
  background: var(--card);
  padding: 20px 20px;
  border-radius: 8px;
  margin: 60px auto;
}

body.page-template-page-lp-front-second
.transition-section--etapes .transition-card-text,

body.page-template-page-lp-front-third
.transition-section--etapes .transition-card-text{
  max-width: 900px;
  margin: 0 auto;
}

/* zajednički stil za SVA pitanja (i static i toggle) */
body.page-template-page-lp-front-second
.transition-section--etapes
.faq-etapes-li,
body.page-template-page-lp-front-third
.transition-section--etapes
.faq-etapes-li{
  margin-bottom: 10px;
}

/* pitanje tekst (static) */
body.page-template-page-lp-front-second
.transition-section--etapes
.faq-etapes-question,
body.page-template-page-lp-front-third
.transition-section--etapes
.faq-etapes-question{
  font-family: "Yummo_Bold", serif;
  font-size: 18px;
  line-height: 1.35;
  margin: 0;
}

/* toggle button (mora izgledat isto ko static pitanje) */
body.page-template-page-lp-front-second
.transition-section--etapes
.faq-etapes-toggle,
body.page-template-page-lp-front-third
.transition-section--etapes
.faq-etapes-toggle{
  all: unset;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 0;

  font-family: "Yummo_Bold", serif;
  font-size: 18px;
  line-height: 1.35;
}

/* strelica */
body.page-template-page-lp-front-second
.transition-section--etapes
.faq-etapes-toggle .faq-arrow,
body.page-template-page-lp-front-third
.transition-section--etapes
.faq-etapes-toggle .faq-arrow{
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  transition: transform .25s ease;
}

/* razmak izmedu pitanja i natuknica (isti za sve) */
body.page-template-page-lp-front-second
.transition-section--etapes
.faq-etapes-subul,
body.page-template-page-lp-front-third
.transition-section--etapes
.faq-etapes-subul{
  margin-top: 12px;
  padding-left: 18px;

  font-family: inherit;
  font-size: 16px;
  line-height: 1.55;
}

/* natuknice NISU bold */
body.page-template-page-lp-front-second
.transition-section--etapes
.faq-etapes-subli,
body.page-template-page-lp-front-third
.transition-section--etapes
.faq-etapes-subli
{
  font-family: inherit;
  font-weight: 400;
}

/* toggle zatvoren */
body.page-template-page-lp-front-second
.transition-section--etapes
.faq-etapes-li.is-toggle
.faq-etapes-subul,
body.page-template-page-lp-front-third
.transition-section--etapes
.faq-etapes-li.is-toggle
.faq-etapes-subul{
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}



/* rotacija strelice */
body.page-template-page-lp-front-second
.transition-section--etapes
.faq-etapes-li.is-toggle.is-open
.faq-etapes-toggle .faq-arrow,
body.page-template-page-lp-front-third
.transition-section--etapes
.faq-etapes-li.is-toggle.is-open
.faq-etapes-toggle .faq-arrow{
  transform: rotate(180deg);
}

/* prva dva stalno otvorena */
body.page-template-page-lp-front-second
.transition-section--etapes
.faq-etapes-li.is-static-open
.faq-etapes-subul,
body.page-template-page-lp-front-third
.transition-section--etapes
.faq-etapes-li.is-static-open
.faq-etapes-subul{
  max-height: none;
  overflow: visible;
}

body.page-template-page-lp-front-second
.fav-models__comment,

body.page-template-page-lp-front-third
.fav-models__comment{
  margin-top: 60px;
}

body.page-template-page-lp-front-second .transition-etapes-btn,
body.page-template-page-lp-front-third .transition-etapes-btn{
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 25px;
}

body.page-template-page-lp-front-second .transition-etapes-btn .btn-red,
body.page-template-page-lp-front-third .transition-etapes-btn .btn-red{

  margin: 0;         
  float: none;      
}


body.page-template-page-lp-front-second,
body.page-template-page-lp-front-third
.project-success--spaced{
  margin-top: 60px;
}


/* ===============================
   INSTALL STEPS (Landing / Premium)
================================= */

.install-steps{
  padding: 56px 0;
}

.install-steps__inner {
  max-width: 1600px;
  margin: 0 auto;
}

.install-steps__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
}


/* svaka kartica */
.install-step{
  background: var(--card);
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 18px;
  padding: 18px 16px 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,.07);
  min-width: 0;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  height: 100%;
}

/* hover “premium” */
.install-step:hover{
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,.10);
  border-color: rgba(0,0,0,.18);
}

/* mala strelica između koraka (desktop) */
.install-step:not(:last-child)::after{
  content: "→";
  position: absolute;
  right: -14px;
  top: 34px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid rgba(0,0,0,.12);
  box-shadow: 0 8px 18px rgba(0,0,0,.06);
  font-weight: 800;
  line-height: 1;
}

/* header */
.install-step__head{
  text-align: center;
  margin-bottom: 16px;
  display: block;
  align-items: center;
  gap: 12px;
}



/* broj kao badge (više “landing”) */
.install-step__num{
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1px;
  background: none;
  border: none;
  width: auto;
  height: auto;
  padding: 0;
}

/* naslov */
.install-step__title{
  font-size: 20px;
  font-weight: 900;
  margin-top: 6px;
}

/* lista kao “check” */
.install-step__list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.install-step__list li{
  position: relative;
  padding-left: 24px;
  font-size: 13.5px;
  line-height: 1.35;
}

/* check ikona */
.install-step__list li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
  opacity: .85;
}

/* malo naglasi zadnji korak (konverzija) */
.install-step:last-child{
  border-color: rgba(0,0,0,.18);
  box-shadow: 0 14px 44px rgba(0,0,0,.10);
}


.install-step:not(:last-child)::after{
  display: none;
}
/* ===============================
   RESPONSIVE
================================= */

@media (max-width: 1024px){
 .install-steps__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .install-step:not(:last-child)::after{
    display: none; /* strelice off */
  }
}

@media (max-width: 640px){
  .install-steps__grid{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .install-step{
    padding: 22px 18px;
  }

  .install-step__num{
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }
}


.reveal{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}


.ba-section{
  max-width: 900px;
  margin: 60px auto 60px;
  padding: 0;
  clear: both;
}

.ba-wrap{
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}

.ba-copy{
  text-align: left;
}

.ba-copy .section-title-red{
  margin: 0 0 14px;
}

.ba-text{
  margin: 0 0 18px;
  max-width: 520px;
}

.ba-cta{
  display: inline-block;
  margin-top: 6px;
}

.ba-split{
  position: relative;
  width: 100%;
  max-width: 420px;
  height: 560px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.18);
  background: #eee;
  box-shadow: 0 18px 45px rgba(0,0,0,.10);
}

.ba-split__img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-split__img--after{
  z-index: 1;
  object-position: center 20%;
}

.ba-split__img--before{
  z-index: 2;
  will-change: clip-path;
  clip-path: polygon(0 0, var(--pos) 0, var(--pos) 100%, 0 100%);
}

.ba-split__divider{
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 2px;
  transform: translateX(-1px);
  z-index: 4;
  pointer-events: none;
  background: rgba(255,255,255,.92);
  box-shadow: 0 0 0 1px rgba(0,0,0,.28);
}

.ba-split__knob{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 35px rgba(255, 255, 255, 0.18);
}

.ba-split__knob::before,
.ba-split__knob::after{
  content:"";
  position:absolute;
  top:50%;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  transform: translateY(-50%);
  opacity: .9;
}

.ba-split__knob::before{
  left: 14px;
  border-right: 8px solid rgba(0,0,0,.12);
}

.ba-split__knob::after{
  right: 14px;
  border-left: 8px solid rgba(0,0,0,.12);
}

.ba-split__range{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 5;
  cursor: ew-resize;
}

@media (max-width: 900px){
  .ba-wrap{
    grid-template-columns: 1fr 400px;
    gap: 40px;
  }
  .ba-split{
    max-width: 400px;
    height: 540px;
  }
}

@media (max-width: 768px){

  .ba-section{
    padding-left: 20px;
    padding-right: 20px;
  }

  .ba-wrap{
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .ba-copy{
    order: 1;
    width: 100%;
  }

  .ba-copy .section-title-red{
    padding-top: 22px;
    margin: 0 0 25px;
    text-align: left !important;
  }

  .ba-text{
    margin: 0 0 18px;
  }

  .ba-split{
    order: 2;
    width: 100%;
    max-width: 100% !important;
    height: 420px;
    border-radius: 14px;
    margin: 0;
  }

  .ba-cta{
    order: 3;
    display: inline-block;
    margin: 18px 0 0;
  }
}


.transition-card-title-center-hero{
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: 100%;
  text-align: center !important;

  color: #900d32 !important;
  font-family: "MinionPro_Regular", serif !important;
  font-size: 36px !important;
  line-height: 1.15;

  margin: 16px auto 30px auto !important;
  padding: 20px 20px;  

}


.hoval-section{
  width: 100%;
  padding: 40px 0;
}

.hoval-wrap{
  max-width: 900px;
  margin: 0 auto;
  padding: 0 10px;
}

/* intro text */
.hoval-text{
  margin: 0px auto 22px;
  max-width: 820px;
  text-align: center;
  color:var(--red);
  font-size: 22px;
  line-height: 1.6;
  font-family: "Yummo_Bold", serif;
  
}

/* grid wrapper */
.hoval-boxes{
  border: 1px solid rgba(0,0,0,.12);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #fff;
    border-radius: 8px;   
  overflow: hidden; 
}

/* each card/box */
.hoval-box{
  padding: 32px 24px;
  min-height: 240px;                 /* malo više radi stabilnosti */
  display: grid;                     /* ključ: odvoji ikon-zonu i tekst */
  grid-template-rows: 140px auto;    /* fiksna zona za ikonu */
  align-items: start;
  justify-items: center;
  gap: 14px;
  background: #fefcef;
  
  text-align: center;
}

.hoval-box + .hoval-box{
  border-left: 1px solid rgba(0,0,0,.12);
}

/* ICON (always in reserved area) */
.hoval-icon{
  height: 90px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  align-self: center;
  justify-self: center;
  flex-shrink: 0;
  color: #6d7074;
  fill: #6d7074;
 filter: brightness(0) invert(45%);

}



/* TEXT */
.hoval-main{
  font-size: 20px;
  line-height: 1.35;
  font-weight: 700;
  color: #6d7074;
  width: 100%;
}

/* TABLET */
@media (max-width: 900px){
  .hoval-main{
    font-size: 22px;
  }
}

/* MOBILE */
@media (max-width: 768px){

  .hoval-boxes{
    grid-template-columns: 1fr;
  }

  .hoval-box{
    min-height: auto;
    padding: 28px 20px;
    grid-template-rows: 120px auto;  /* manja fiksna zona za ikonu */
  }

  .hoval-box + .hoval-box{
    border-left: 0;
    border-top: 1px solid rgba(0,0,0,.12);
  }

  .hoval-text{
    text-align: center;
    font-size: 20px;
  }

  .hoval-main{
    font-size: 20px;
  }
}

html, body{
  margin: 0 !important;
  padding: 0 !important;
}

body.page-template-page-lp-front-second,
body.page-template-page-lp-front-second #page,
body.page-template-page-lp-front-second .site,
body.page-template-page-lp-front-second .site-content,
body.page-template-page-lp-front-second #content,
body.page-template-page-lp-front-second main{
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* REVIEWS SLIDER */
.reviews-slider-section{
  max-width: 900px;
  margin: 0 auto 60px;
}
.reviews-slider{
  position: relative;
}

.reviews-viewport{
  overflow: hidden;
  width: 100%;
}

.reviews-track{
  display: flex;
  gap: 18px;
  transition: transform .35s ease;
  will-change: transform;
  align-items: flex-start;
}

.review-card{
  flex: 0 0 calc((100% - 36px) / 3);
  background: #fefcef;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 14px;
  padding: 22px 18px 18px;
  display: flex;
  flex-direction: column;
  align-self: flex-start;
  min-height: unset;
}

.review-card__author{
  font-family: "Yummo_Bold", sans-serif;
  font-size: 19px;
  margin: 0 0 12px;
  color: var(--text);
  text-align: left;
}

.review-card__author::before{
  content: "★★★★★";
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  letter-spacing: 2px;
  color: #E4B200;
  line-height: 1;
}

.review-card__text{
  margin: 0;
  font-size: 17px;
  line-height: 1.5;
  color: var(--text);

  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-card.is-open .review-card__text{
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.review-card__toggle{
  margin-top: auto;
  align-self: flex-start;
  background: transparent;
  border: 0;
  padding: 12px 0 0;
  color: var(--red);
  font-family: "Yummo_Bold", sans-serif;
  font-size: 16px;
  cursor: pointer;
}

.review-card__toggle:hover{
  opacity: .8;
}

.reviews-nav{
  position: absolute;
  top: 160px;   /* visina zatvorenih kartica */
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;

}

.reviews-nav--prev{
  left: -60px;
}

.reviews-nav--next{
  right: -60px;
}

.reviews-nav:hover{
  opacity: .85;
}

.reviews-viewport{
  overflow: hidden;
  width: 100%;
}

@media (max-width: 900px){
  .review-card{
    flex: 0 0 calc((100% - 18px) / 2);
    min-height: 300px;
  }
}

@media (max-width: 600px){
  .review-card{
    flex: 0 0 100%;
    min-height: auto;
  }
}

/* MEDIA SLIDER */
.media-slider-section{
  max-width: 900px;
  margin: 0 auto 60px;
}

.media-slider{
  position: relative;
}

.media-viewport{
  overflow: hidden;
  width: 100%;
}

.media-track{
  display: flex;
  gap: 18px;
  transition: transform .35s ease;
  will-change: transform;
  align-items: flex-start;
}

.media-slide{
  flex: 0 0 calc((100% - 36px) / 3);
}

.media-card{
  background: #fff;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-self: flex-start;
}

.media-card__logo{
  width: 70px;
  height: 34px;
  object-fit: contain;
  display: block;
  margin: 18px 18px 0;
}

.media-card__photo{
  width: calc(100% - 36px);
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  margin: 14px 18px 0;
}

.media-card__text{
  padding: 16px 18px 0;
}

.media-card__text p{
  margin: 0;
  font-size: 17px;
  line-height: 1.5;
  color: var(--text);

  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.media-card.is-open .media-card__text p{
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.media-card__toggle{
  margin: 14px 18px 18px;
  align-self: flex-start;
  background: transparent;
  border: 0;
  padding: 0;
  color: var(--red);
  font-family: "Yummo_Bold", sans-serif;
  font-size: 16px;
  cursor: pointer;
}

.media-card__toggle:hover{
  opacity: .8;
}

/* FIXED ARROWS */
.media-nav{
  position: absolute;
  top: 160px;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;

}

.media-nav--prev{
  left: -60px;
}

.media-nav--next{
  right: -60px;
}

.media-nav:hover{
  opacity: .85;
}

@media (max-width: 900px){
  .media-slide{
    flex: 0 0 calc((100% - 18px) / 2);
  }

  .media-card__photo{
    height: 190px;
  }

  .media-nav{
    top: 165px;
  }

  .media-nav--prev{
    left: -20px;
  }

  .media-nav--next{
    right: -20px;
  }
}

@media (max-width: 600px){
  .media-slide{
    flex: 0 0 100%;
  }

  .media-card__photo{
    height: 200px;
  }

  .media-nav{
    top: 170px;
  }

  .media-nav--prev{
    left: -8px;
  }

  .media-nav--next{
    right: -8px;
  }
}

/* END FORM BLOCK BEFORE FAQ */
.lp-end-form{
  max-width: 900px;
  margin: 60px auto 40px;
  padding: 0 20px;
}

.lp-end-form__inner{
  width: 100%;
}

.lp-end-form__box{
  background: #fefcef;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 18px;
  padding: 34px 28px 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.lp-end-form__title{
  margin: 0 0 22px;
  text-align: center;
  color: #910e31;
  font-family: "MinionPro_Regular", serif;
  font-size: 34px;
  line-height: 1.15;
}

.lp-end-form__form{
  max-width: 760px;
  margin: 0 auto;
}

/* Gravity Forms scoped only to this block */
.lp-end-form .gform_wrapper{
  max-width: 100% !important;
  margin: 0 !important;
}

.lp-end-form .gform_wrapper .gform_fields{
  display: block !important;
}

.lp-end-form .gform_wrapper .gfield,
.lp-end-form .gform_wrapper .gfield--width-half,
.lp-end-form .gform_wrapper .gfield--width-third,
.lp-end-form .gform_wrapper .gfield--width-quarter{
  width: 100% !important;
  max-width: 100% !important;
  flex: 0 0 100% !important;
  margin-bottom: 12px !important;
}

.lp-end-form .gform_wrapper,
.lp-end-form .gform_body{
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.lp-end-form .gfield_label,
.lp-end-form .gform_wrapper .gfield_label{
  display: block;
  margin-bottom: 6px !important;
  line-height: 1.25 !important;
  font-family: "Yummo_Bold", sans-serif !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #6f7a82 !important;
}

.lp-end-form .ginput_container{
  margin-top: 0 !important;
}

.lp-end-form .gform_wrapper input[type="text"],
.lp-end-form .gform_wrapper input[type="email"],
.lp-end-form .gform_wrapper input[type="tel"],
.lp-end-form .gform_wrapper textarea,
.lp-end-form .gform_wrapper select{
  width: 100% !important;
  border: 1px solid #9c9c9c !important;
  border-radius: 8px !important;
  padding: 12px 14px !important;
  font-size: 20px !important;
  font-family: "Yummo_Regular", sans-serif !important;
  color: #6d7074 !important;
  box-shadow: none !important;
  margin-top: 0 !important;
  box-sizing: border-box;
  resize: none !important;
  background: #fff !important;
}

.lp-end-form .gform_wrapper textarea{
  min-height: 160px !important;
}

.lp-end-form .gform_footer{
  margin-top: 20px !important;
  text-align: center !important;
}

.lp-end-form .gform_wrapper input[type="submit"],
.lp-end-form .gform_wrapper .gform_button{
  background: #910e31 !important;
  color: #fff !important;
  border: none !important;
  padding: 14px 34px !important;
  border-radius: 10px !important;
  cursor: pointer;
  font-size: 20px !important;
  font-family: "Yummo_Bold", sans-serif !important;
  transition: 0.2s ease;
  min-width: 260px;
  width: auto !important;
  display: inline-block !important;
  margin: 0 auto !important;
}

.lp-end-form .gform_wrapper input[type="submit"]:hover,
.lp-end-form .gform_wrapper .gform_button:hover{
  opacity: 0.85;
}

.lp-end-form__note{
  max-width: 760px;
  margin: 14px auto 0;
  text-align: center;
  color: #8f9296;
  font-size: 18px;
  line-height: 1.45;
}

.lp-end-form__note--bold{
  font-family: "Yummo_Bold", sans-serif;
  font-weight: 700;
}

@media (max-width: 768px){
  .lp-end-form{
    margin: 40px auto 30px;
    padding: 0 20px;
  }

  .lp-end-form__box{
    padding: 24px 18px 22px;
    border-radius: 14px;
  }

  .lp-end-form__title{
    font-size: 26px !important;
    line-height: 1.2;
    margin-bottom: 18px;
  }

  .lp-end-form .gfield_label,
  .lp-end-form .gform_wrapper .gfield_label{
    font-size: 18px !important;
  }

  .lp-end-form .gform_wrapper input[type="text"],
  .lp-end-form .gform_wrapper input[type="email"],
  .lp-end-form .gform_wrapper input[type="tel"],
  .lp-end-form .gform_wrapper textarea,
  .lp-end-form .gform_wrapper select{
    font-size: 16px !important;
    padding: 10px 12px !important;
  }

  .lp-end-form .gform_wrapper input[type="submit"],
  .lp-end-form .gform_wrapper .gform_button{
    width: 260px !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-bottom: 0 !important;
  }

  .lp-end-form__note{
    font-size: 16px;
    line-height: 1.4;
  }
}


/* SIMPLE LP */

/* SIMPLE LP */

/* HERO SIMPLE */
.hero-simple {
  width: 100%;
  background: #fff;
  padding: 80px 20px;
}

.hero-simple__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

/* LEFT */
.hero-simple__left {
  text-align: left;
}

.hero-simple__title {
  font-family: "Yummo_Bold", sans-serif;
  font-size: 64px;
  line-height: 1.1;
  color: #910e31;
  margin-bottom: 24px;
}

.hero-simple__text {
  font-size: 28px !important;
  line-height: 1.5 !important;
  margin-bottom: 30px;
  color: #6d7074;
}

.hero-simple__btn {
  display: inline-block;
  background: #910e31;
  color: #fff;
  padding: 16px 34px;
  border-radius: 10px;
  text-decoration: none;
  font-family: "Yummo_Bold", sans-serif;
  transition: 0.2s ease;
}

.hero-simple__btn:hover {
  opacity: 0.85;
}

/* RIGHT */
.hero-simple__right img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
}

.header-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* =========================================
   INSTALL STEPS GRID ONLY
   (ne dira izgled zute kartice, samo layout)
========================================= */

.install-steps__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.install-steps__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

/* =========================================
   REVIEWS CAROUSEL - CLEAN VERSION
========================================= */

.reviews-carousel-section {
  max-width: 1280px;
  margin: 0 auto 80px;
  padding: 20px 30px 0;
}

.reviews-carousel__inner {
  position: relative;
  text-align: center;
  padding: 20px 60px 10px;
}

.reviews-carousel__title {
  position: relative;
  display: inline-block;
  margin: 0 0 14px;
  color: var(--red);
  font-family: "Yummo_Bold", sans-serif;
  font-size: 44px;
  line-height: 1.1;
  font-style: italic;
}

.reviews-carousel__title::before,
.reviews-carousel__title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 90px;
  height: 2px;
  background: rgba(145,14,49,.15);
  transform: translateY(-50%);
}

.reviews-carousel__title::before {
  right: calc(100% + 24px);
}

.reviews-carousel__title::after {
  left: calc(100% + 24px);
}

.reviews-carousel__badge {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 10px;
}

.reviews-carousel__badge img {
  width: auto;
  height: 50px;
  display: block;
  object-fit: contain;
}

.reviews-carousel__stars {
  margin: 0 0 28px;
  color: #E4B200;
  font-size: 24px;
  letter-spacing: 4px;
  line-height: 1;
}

.reviews-carousel {
  position: relative;
}

.reviews-carousel__viewport {
  position: relative;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  overflow: hidden;
}

.reviews-carousel__track {
  display: flex;
  transition: transform .45s ease;
  will-change: transform;
}

.reviews-carousel__slide {
  flex: 0 0 100%;
  width: 100%;
  padding: 0 24px;
}

.reviews-carousel__text {
  margin: 0 auto 24px;
  max-width: 860px;
  color: #6d7074;
  font-size: 18px;
  line-height: 1.75;
  text-align: center;
}

.reviews-carousel__author {
  margin: 0;
  color: #6d7074;
  font-family: "Yummo_Bold", sans-serif;
  font-size: 16px;
  line-height: 1.3;
}

.reviews-carousel__arrow {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(145,14,49,.18);
  border-radius: 999px;
  background: #fff;
  color: #910e31;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: .2s ease;
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 3;
}

.reviews-carousel__arrow:hover {
  background: #910e31;
  color: #fff;
}

.reviews-carousel__arrow--prev {
  left: 20px;
}

.reviews-carousel__arrow--next {
  right: 20px;
}

.reviews-carousel__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
}

.reviews-carousel__dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(145,14,49,.25);
  cursor: pointer;
  padding: 0;
  transition: .2s ease;
}

.reviews-carousel__dot.is-active {
  background: #910e31;
  transform: scale(1.15);
}

/* =========================================
   ESTIMATION FORM – FIXED FIELD WIDTH
========================================= */

.lp-estimate-section {
  max-width: 1120px;
  margin: 80px auto;
  padding: 0 20px;
}

.lp-estimate-card {
  background: #fff;
  border-radius: 18px;
  padding: 40px 36px 30px;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 20px 50px rgba(0,0,0,.06);
}

.lp-estimate-card__head {
  text-align: center;
  margin-bottom: 30px;
}

/* samo zadnje textarea polje */
.lp-estimate-section #field_1_8 .gfield_label {
  font-size: 0 !important;
}

.lp-estimate-section #field_1_8 .gfield_label::after {
  content: "Parlez-nous brièvement de votre projet (facultatif)";
  font-size: 16px;
  font-family: "Yummo_Bold", sans-serif;
  color: #6d7074;
  display: inline-block;
}

.lp-estimate-card__eyebrow {
  margin: 0 0 10px;
  color: rgba(145,14,49,.75);
  font-family: "Yummo_Bold", sans-serif;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.lp-estimate-card__title {
  margin: 0;
  font-family: "MinionPro_Regular", serif;
  font-size: 42px;
  line-height: 1.1;
  color: #910e31;
}

.lp-estimate-card__form {
  max-width: 980px;
  margin: 0 auto;
}

/* Gravity reset */
.lp-estimate-section .gform_wrapper {
  max-width: 100% !important;
  margin: 0 !important;
}

.lp-estimate-section .gform_wrapper form {
  margin: 0 !important;
}

.lp-estimate-section .gform_body {
  margin: 0 !important;
  padding: 0 !important;
}

.lp-estimate-section .gform_fields {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  column-gap: 34px !important;
  row-gap: 22px !important;
  align-items: start !important;
}

.lp-estimate-section .gfield {
  margin: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  display: flex;
  flex-direction: column;
}

.lp-estimate-section .ginput_container,
.lp-estimate-section .ginput_container_text,
.lp-estimate-section .ginput_container_email,
.lp-estimate-section .ginput_container_phone,
.lp-estimate-section .ginput_container_address,
.lp-estimate-section .ginput_container textarea,
.lp-estimate-section .ginput_container input,
.lp-estimate-section .ginput_container select {
  width: 100% !important;
  max-width: 100% !important;
}

.lp-estimate-section .gfield input,
.lp-estimate-section .gfield textarea,
.lp-estimate-section .gfield select {
  width: 100% !important;
  max-width: none !important;
  box-sizing: border-box !important;
}

.lp-estimate-section .gfield_label {
  font-family: "Yummo_Bold", sans-serif !important;
  font-size: 16px !important;
  color: #6d7074 !important;
  margin-bottom: 8px !important;
  display: flex !important;
  align-items: center;
  min-height: 22px;
}

.lp-estimate-section input[type="text"],
.lp-estimate-section input[type="email"],
.lp-estimate-section input[type="tel"],
.lp-estimate-section input[type="number"],
.lp-estimate-section textarea,
.lp-estimate-section select {
  width: 100% !important;
  border: 1px solid rgba(0,0,0,.14) !important;
  border-radius: 12px !important;
  padding: 12px 16px !important;
  font-size: 16px !important;
  font-family: "Yummo_Regular", sans-serif !important;
  color: #6d7074 !important;
  background: #fff !important;
  transition: all .2s ease;
  box-sizing: border-box !important;
  margin: 0 !important;
}

.lp-estimate-section input[type="text"],
.lp-estimate-section input[type="email"],
.lp-estimate-section input[type="tel"],
.lp-estimate-section input[type="number"],
.lp-estimate-section select {
  height: 54px !important;
}

.lp-estimate-section textarea {
  min-height: 160px !important;
  resize: none !important;
}

.lp-estimate-section input:focus,
.lp-estimate-section textarea:focus,
.lp-estimate-section select:focus {
  outline: none !important;
  border-color: #910e31 !important;
  box-shadow: 0 0 0 2px rgba(145,14,49,.10) !important;
}

.lp-estimate-section .gfield--type-email,
.lp-estimate-section .gfield--type-textarea,
.lp-estimate-section .gfield--type-captcha,
.lp-estimate-section .gfield.full,
.lp-estimate-section .gfield--width-full {
  grid-column: 1 / -1 !important;
}

.lp-estimate-section .gform_footer {
  text-align: center;
  margin-top: 24px !important;
  padding: 0 !important;
}

.lp-estimate-section input[type="submit"],
.lp-estimate-section .gform_button {
  background: #910e31 !important;
  color: #fff !important;
  border: none !important;
  padding: 14px 38px !important;
  border-radius: 12px !important;
  font-family: "Yummo_Bold", sans-serif !important;
  font-size: 16px !important;
  cursor: pointer;
  transition: .2s ease;
  min-width: 220px;
}

.lp-estimate-section input[type="submit"]:hover,
.lp-estimate-section .gform_button:hover {
  opacity: .88;
}

.lp-estimate-card__note {
  text-align: center;
  margin-top: 14px;
  font-size: 14px;
  color: #8f9296;
}

.lp-estimate-card__note--bold {
  font-family: "Yummo_Bold", sans-serif;
}

.lp-estimate-section .ginput_container {
  display: block;
}

.lp-estimate-section .gfield_label .gfield_required {
  margin-left: 4px;
  position: relative;
  top: -1px;
}

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

@media (max-width: 1280px) {
  .install-steps__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
  }
}

@media (max-width: 1200px) {
  .install-steps__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }
}

@media (max-width: 1100px) {
  .reviews-carousel-section {
    max-width: 1100px;
  }

  .reviews-carousel__viewport {
    max-width: 820px;
  }

  .reviews-carousel__text {
    max-width: 760px;
  }

  .reviews-carousel__arrow--prev {
    left: 0;
  }

  .reviews-carousel__arrow--next {
    right: 0;
  }
}

@media (max-width: 900px) {
  .install-steps__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reviews-carousel__title {
    font-size: 34px;
  }

  .reviews-carousel__title::before,
  .reviews-carousel__title::after {
    width: 50px;
  }

  .reviews-carousel__viewport {
    max-width: 700px;
  }

  .reviews-carousel__text {
    font-size: 18px;
    line-height: 1.65;
    max-width: 640px;
  }

  .reviews-carousel__arrow {
    width: 42px;
    height: 42px;
    font-size: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
  }

  .reviews-carousel__arrow--prev {
    left: 10px;
  }

  .reviews-carousel__arrow--next {
    right: 10px;
  }
}

@media (max-width: 768px) {
  /* HERO */
  .hero-simple__inner {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    text-align: center !important;
  }

  .hero-simple__left {
    text-align: center !important;
  }

  .hero-simple__title {
    font-size: 38px !important;
    line-height: 1.12 !important;
  }

  .hero-simple__text {
    font-size: 18px !important;
    line-height: 1.5 !important;
    margin-bottom: 24px !important;
  }

  .hero-simple__btn {
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 0 auto !important;
  }

  /* INSTALL STEPS */
  .install-steps__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* REVIEWS */
  .reviews-carousel-section {
    padding-left: 16px !important;
    padding-right: 16px !important;
    margin-bottom: 40px !important;
  }

  .reviews-carousel__inner {
    padding: 10px 0 0 !important;
  }

  .reviews-carousel__title {
    font-size: 28px !important;
    margin-bottom: 10px !important;
  }

  .reviews-carousel__title::before,
  .reviews-carousel__title::after {
    display: none !important;
  }

  .reviews-carousel__badge img {
    height: 24px !important;
  }

  .reviews-carousel__stars {
    font-size: 20px !important;
    margin-bottom: 18px !important;
  }

  .reviews-carousel__viewport {
    max-width: 100% !important;
    overflow: hidden !important;
  }

  .reviews-carousel__slide {
    padding: 0 8px 0 8px !important;
  }

  .reviews-carousel__text {
    font-size: 15px !important;
    line-height: 1.72 !important;
    max-width: 100% !important;
    padding: 0 22px !important;
    margin: 0 auto 14px !important;
  }

  .reviews-carousel__author {
    font-size: 14px !important;
    margin-bottom: 0 !important;
  }

  .reviews-carousel__arrow {
    position: absolute !important;
    top: 72% !important;
    transform: translateY(-50%) !important;
    width: 38px !important;
    height: 38px !important;
    font-size: 20px !important;
    margin: 0 !important;
    z-index: 5 !important;
    background: rgba(255,255,255,.98) !important;
    border: 1px solid rgba(145,14,49,.14) !important;
    border-radius: 999px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,.08) !important;
  }

  .reviews-carousel__arrow--prev {
    left: 4px !important;
  }

  .reviews-carousel__arrow--next {
    right: 4px !important;
  }

  .reviews-carousel__dots {
    gap: 8px !important;
    margin-top: 10px !important;
  }

  .reviews-carousel__dot {
    width: 10px !important;
    height: 10px !important;
    background: rgba(145,14,49,.25) !important;
    transform: none !important;
  }

  .reviews-carousel__dot.is-active {
    width: 10px !important;
    height: 10px !important;
    background: #910e31 !important;
    transform: none !important;
  }

  /* ESTIMATION */
  .lp-estimate-section {
    margin: 50px auto;
    padding: 0 16px;
  }

  .lp-estimate-card {
    padding: 28px 18px 22px;
  }

  .lp-estimate-card__title {
    font-size: 28px;
  }

  .lp-estimate-card__form {
    max-width: 100%;
  }

  .lp-estimate-section .gform_fields {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .lp-estimate-section input,
  .lp-estimate-section textarea,
  .lp-estimate-section select {
    font-size: 15px !important;
  }

  .lp-estimate-section .gform_footer {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
  }

  .lp-estimate-section .gform_button,
  .lp-estimate-section input[type="submit"] {
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 0 auto !important;
  }
}