/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "DIN2014"; 
  color: #deddd9;
  line-height: 1.2;
  font-size: 22px;
}
img{
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit; transition: all 0.2s;
}
a:hover{
  color: inherit; transition: all 0.2s;
}
.section-title a{  text-decoration: underline; opacity: 1; }
.section-title a:hover{  opacity: 0.9; }

/* fonts */
@font-face {
  font-family: "DIN2014";
  src: url("../fonts/DIN2014.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DIN2014";
  src: url("../fonts/DIN2014Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* Page container */
.page-container{
  background-image: linear-gradient(to right, #212527 0%, #3d4145 30%, #3d4145 70%, #212527 100%);
}
.container {
  max-width: 1395px;
}

 
.accent-color{
  color: #f7a70a;
}

 
section:not(.hero-section){
  position: relative;
  padding: 7.5rem 0 5.5rem;
}
section:not(.hero-section):before{
  content: '';
  position: absolute;
  top: 0;left: 0;right: 0;
  height: 400px; width: 100%;
  background-image: linear-gradient(to top, transparent 0%, #212527 100%);
}
section:not(.hero-section) .container{
  position: relative; z-index: 1;
}
.section-title{
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 51px;
  font-weight: 700;
}


.hero-section{
 position: relative;overflow: hidden;
}
.hero-image{
    height: 100vh;     width: 100%;
    object-fit: cover; min-height: 805px;
}
.hero-content{
  position: absolute;
  bottom: 50px;
  width: 100%;
}
.hero-inner-image{
  max-height: 30px;
}
.hero-content-left{
 display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 15px;
}
.hero-content-right{
  padding: 0 15px;
}

.about-section, .cta-section{
  font-size: 28px;
  text-align: center;
}
.headline{
  font-size: 38px; font-weight: 700; margin-bottom: 1.75rem;
}
.about-section .descr{ padding: 8px 25px; }


.video{
  position:relative; width:min(630px, 100%); aspect-ratio:16/9;
  overflow:hidden; 
  display: block;
  margin: 0 auto;
/*  border:1px solid rgba(255,255,255,.05);*/
}
.video video{
  width: 100%;
  height: 100%; display:block;
  object-fit:cover;   /* щоб відео красиво обрізалось у 16:9 контейнері */
}
.video-badge{
  position:absolute; left:10px; top:10px;
/*  background:rgba(0,0,0,.55);*/
  padding:6px 10px;  font-weight:700; font-size:12px;
/*  border:1px solid rgba(255,255,255,.1);*/
}
.video-badge-image{
    max-height: 45px;
    object-fit: contain;
}
.video-play{
  position:absolute; inset:0; margin:auto; width:60px; height:60px;
  border-radius:50%; border:none; background:rgba(255,255,255,.08); backdrop-filter: blur(4px);
  cursor:pointer; font-size:28px; line-height:1; color:#fff;
  opacity:.9; transition:opacity .2s ease, transform .2s ease;
  z-index:3;
}
.video-play:hover{ transform: scale(1.08) }
[data-video].is-playing .video-play { opacity:.7; }  /* під час відтворення трохи тьмяніше */
.video:hover .video-play { opacity:1; }
.video-slider:not(.slick-initialized){
  opacity: 0.5;
    transition: opacity 1s ease;
    -webkit-transition: opacity 1s ease;
    height: 375px; overflow: hidden;
}



section.tips-section{
  padding: 7rem 0 0;
}
section.tips-section .section-title{
  line-height: 1.1;
}
.tips{
  text-align: center;
  font-size: 28px;
  padding-top: 0.5rem;
}
.tip{ margin: 2rem auto 4rem; max-width: 730px;}
.tip-header{
  font-size: 34px; color: #f7a70a; margin-bottom: 1.5rem;
}
.slick-dots{
  list-style-type: none;  display: flex;  align-items: center;
    justify-content: center;
}
.slick-dots li button{
  font-size: 0;
  width: 12px;height: 12px;
  margin: 8px;
  border-radius: 100%; border: none;
  background: #f7a70a;
}
.slick-dots li.slick-active button{
  background: #fff;
}
.tips-slider:not(.slick-initialized){
  opacity: 0.5;
    transition: opacity 1s ease;
    -webkit-transition: opacity 1s ease;
    height: 130px; overflow: hidden;
}
.cta-text{
  font-size: 38px; font-weight: 700; text-align: center;
}
.cta-image{
  max-width: 320px; max-height: 320px;    margin: 0 auto;
    display: block;
}
.cta-text .btn{
      margin-top: 1.3rem; margin-bottom: 1.3rem;
}
.btn {
    display: inline-block;
    text-decoration: none;
    font-weight: 700;
    padding: 22px 30px;
    border-radius: 14px;
    background: transparent;
    color: #f7a70a;
    border: 3px solid #f7a70a;
    font-size: 38px;
    box-shadow:   0 10px 25px rgba(0,0,0,.35);
}
.btn:hover{
  color: #deddd9;
}
/*section:last-item{
  padding-bottom: 10rem;
}*/
.main-content{ padding-bottom: 5rem; }
.font-sm{ font-size: 18px; }
.cta-text a{     color: #f7a70a; }
.cta-text ul{ margin-bottom: 1.5rem; }
.cta-text ul li{   text-align: left;    margin-left: 2rem; }

@media (max-width: 1199px) {
  .section-title{ font-size: 44px; }
  .hero-image{ height: auto; min-height: 700px;}
  .headline, .cta-text, .btn{     font-size: 32px;  }
  .about-section, .tips, .cta-section{    font-size : 24px;}

  .tip-header,{ font-size: 28px; }
}
@media (max-width: 991px) {
  .hero-image{   min-height: 630px;}
  .hero-content{ bottom: 35px; }
  .hero-content-right img{ max-height: 40px; }
  .hero-inner-image {    max-height: 24px; }
  .section-title{ font-size: 40px; }
  .headline, .cta-text, .btn, .tip-header{     font-size: 28px;  }
  .about-section, .tips, .cta-section{    font-size : 20px;}
  .slick-dots li button{ width: 10px;height: 10px; margin: 5px; }
  section.tips-section{  }
}
@media (max-width: 767px) {
    .hero-image {  min-height: 500px;    }
    .section-title {        font-size: 38px;    }
    .hero-content-right img {   max-height: 32px;   }
    .hero-content {        bottom: 15px;    }
    section:not(.hero-section){ padding: 5rem 0; }
    section.tips-section {   padding: 5rem 0 0; }
     .headline, .cta-text, .btn, .tip-header{     font-size: 24px;  }
     .cta-image{ max-width: 260px; max-height: 260px; }
     .main-content{ padding-bottom: 1rem; }

    .hero-content .row {    align-items: center;    justify-content: center !important;    gap: 10px;}
    .hero-content-right img{   max-height: 24px; }
    .font-sm{ font-size: 16px; }
}
@media (max-width: 630px) {
    .hero-image {        min-height: 250px;   }
    .hero-content {
        position: relative;
        bottom: auto;
        padding: 25px 0 20px;
    }
    .hero-content .row{ gap: 15px; }
    .hero-content:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 100px;
      width: 100%;
      background-image: linear-gradient(to top, transparent 0%, #212527 100%);
  }
  .hero-content-left {     flex-wrap: wrap;    justify-content: center;         gap: 15px; }
  .hero-inner-image {        max-height: 20px;    }
  .hero-content .container{ position: relative;z-index: 1; }
  section:not(.hero-section) {        padding: 4rem 0;  }
  section.tips-section {   padding: 4rem 0 0;   }

  .section-title {        font-size: 32px;    }

  .headline, .cta-text, .btn, .tip-header {        font-size: 22px;    }
  .about-section, .tips, .cta-section {        font-size: 18px;   }
  .cta-image {        max-width: 160px;        max-height: 160px;    }
  .btn{     padding: 10px 20px; }
 .main-content{ padding-bottom: 0rem; }
 .about-section .descr{ padding: 0; }
 .video-badge-image {    max-height: 24px;}


}
@media (max-width: 480px) {
  .section-title {        font-size: 30px;    }
}

/* === Hero: повільний zoom === */
@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}
.hero-image{
  will-change: transform;
  animation: heroZoom 18s ease-in-out infinite alternate;
}

/* якщо користувач увімкнув "зменшити анімацію" */
@media (prefers-reduced-motion: reduce) {
  .hero-image { animation: none !important; }
}

/* === Play: легке "дихання" === */
@keyframes breathe {
  0%,100% { transform: scale(1); }
  50%     { transform: scale(1.06); }
}
.video-play{
  animation: breathe 2.4s ease-in-out infinite;
}
.video:hover .video-play { animation-play-state: paused; } /* на hover зупиняємо */


/* === Scroll reveal === */
.reveal{
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}
.reveal.reveal-in{
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal{ opacity: 1; transform: none; }
}


/* === Логотипи: micro-float зі стагером === */
@keyframes floatY { 
  0%,100% { transform: translateY(0); } 
  50% { transform: translateY(-4px); }
}
.hero-content-left .hero-inner-image{
  animation: floatY 6s ease-in-out infinite;
}
.hero-content-left .hero-inner-image:nth-child(2){ animation-delay: .2s; }
.hero-content-left .hero-inner-image:nth-child(3){ animation-delay: .4s; }
.hero-content-left .hero-inner-image:nth-child(4){ animation-delay: .6s; }
.hero-content-left .hero-inner-image:nth-child(5){ animation-delay: .8s; }

@media (prefers-reduced-motion: reduce) {
  .hero-content-left .hero-inner-image{ animation: none; }
}

/* === Language switcher === */
.lang-switcher{
  display:flex; gap:10px; justify-content:center; align-items:center;
  padding: 14px 16px;
  font-weight:700;
      position: absolute;
    top: 5px;
    right: 15px;
    z-index: 10;
}
.lang-switcher a{
  display:inline-block;
  padding:6px 10px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.25);
  opacity:.9;
  text-decoration: none;
}
.lang-switcher a:hover{ opacity:1; }
.lang-switcher a.active{
  background: rgba(255,255,255,.08);
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
  opacity:1;
}

.text-sm{
  font-size: 0.75em;
}
footer{
  padding: 10px;
}