
:root {
    --red: #ed1c24;
    --blue: #06609b;
    --green: #6bbe55;
    --off-white: #d3d3e2;
    --dark-blue-text: #153e59;
    --light-blue-bg: #d7e6f6;
    --dark-green-text: #5c9b28;
    --gray-bg: #f2f2f2;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Work Sans', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: var(--off-white);
}


.roleta-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: visible;
  opacity: 1;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.roleta-modal.hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.roleta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(3px);
}

.roleta-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
}

.roleta-frame-container {
  position: relative;
  width: 400px;
  height: 340px; 
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.roleta-frame {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.1s ease;
}

.particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  overflow: hidden;
  z-index: 10000;
}

.particle {
  position: absolute;
  width: var(--size);
  height: var(--size);
  background: radial-gradient(circle, var(--color), var(--color-alt));
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  box-shadow: 
    0 0 3px var(--color), 
    0 0 6px var(--color), 
    0 0 9px var(--color),
    inset 0 0 2px rgba(255,255,255,0.8);
  animation: particleFly var(--duration) var(--delay) ease-out forwards;
}

.particle.confetti {
  border-radius: 2px;
  background: linear-gradient(45deg, var(--color), var(--color-alt), var(--color));
  box-shadow: 
    0 0 4px var(--color), 
    0 0 8px var(--color),
    0 0 12px var(--color-alt),
    inset 0 0 1px rgba(255,255,255,0.7);
  animation: confettiFly var(--duration) var(--delay) ease-out forwards;
}

.particle.star {
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  background: radial-gradient(circle, var(--color), var(--color-alt), var(--color));
  box-shadow: 
    0 0 5px var(--color), 
    0 0 10px var(--color),
    0 0 15px var(--color-alt),
    inset 0 0 2px rgba(255,255,255,0.8);
  animation: starFly var(--duration) var(--delay) ease-out forwards;
}

@keyframes particleFly {
  0% {
    transform: translate(var(--start-x), var(--start-y)) rotate(0deg) scale(1);
    opacity: 0;
    filter: brightness(3);
  }
  3% {
    opacity: 1;
    transform: translate(var(--start-x), var(--start-y)) rotate(20deg) scale(1.2);
    filter: brightness(4);
  }
  25% {
    opacity: 1;
    filter: brightness(2.5);
  }
  50% {
    opacity: 0.95;
    transform: translate(calc(var(--start-x) + (var(--end-x) - var(--start-x)) * 0.5), calc(var(--start-y) + (var(--end-y) - var(--start-y)) * 0.5)) rotate(calc(var(--rotation) * 0.5)) scale(0.9);
    filter: brightness(2);
  }
  75% {
    opacity: 0.8;
    transform: translate(calc(var(--start-x) + (var(--end-x) - var(--start-x)) * 0.75), calc(var(--start-y) + (var(--end-y) - var(--start-y)) * 0.75)) rotate(calc(var(--rotation) * 0.75)) scale(0.6);
    filter: brightness(1.5);
  }
  90% {
    opacity: 0.5;
    filter: brightness(1);
  }
  100% {
    transform: translate(var(--end-x), var(--end-y)) rotate(var(--rotation)) scale(0.3);
    opacity: 0;
    filter: brightness(0.3);
  }
}

@keyframes confettiFly {
  0% {
    transform: translate(var(--start-x), var(--start-y)) rotateZ(0deg) rotateY(0deg) scale(1);
    opacity: 0;
    filter: brightness(3.5);
  }
  4% {
    opacity: 1;
    transform: translate(var(--start-x), var(--start-y)) rotateZ(60deg) rotateY(45deg) scale(1.4);
    filter: brightness(4);
  }
  30% {
    opacity: 1;
    filter: brightness(2.8);
  }
  55% {
    opacity: 0.9;
    transform: translate(calc(var(--start-x) + (var(--end-x) - var(--start-x)) * 0.55), calc(var(--start-y) + (var(--end-y) - var(--start-y)) * 0.55)) rotateZ(calc(var(--rotation) * 0.55)) rotateY(200deg) scale(0.8);
    filter: brightness(2.2);
  }
  78% {
    opacity: 0.7;
    transform: translate(calc(var(--start-x) + (var(--end-x) - var(--start-x)) * 0.78), calc(var(--start-y) + (var(--end-y) - var(--start-y)) * 0.78)) rotateZ(calc(var(--rotation) * 0.78)) rotateY(280deg) scale(0.5);
    filter: brightness(1.8);
  }
  92% {
    opacity: 0.4;
    filter: brightness(1);
  }
  100% {
    transform: translate(var(--end-x), var(--end-y)) rotateZ(var(--rotation)) rotateY(360deg) scale(0.2);
    opacity: 0;
    filter: brightness(0.2);
  }
}

@keyframes starFly {
  0% {
    transform: translate(var(--start-x), var(--start-y)) scale(1) rotate(0deg);
    opacity: 0;
    filter: brightness(4) drop-shadow(0 0 15px var(--color));
  }
  5% {
    opacity: 1;
    transform: translate(var(--start-x), var(--start-y)) scale(1.8) rotate(80deg);
    filter: brightness(5) drop-shadow(0 0 20px var(--color));
  }
  28% {
    opacity: 1;
    filter: brightness(3.5) drop-shadow(0 0 18px var(--color));
  }
  52% {
    opacity: 0.9;
    transform: translate(calc(var(--start-x) + (var(--end-x) - var(--start-x)) * 0.52), calc(var(--start-y) + (var(--end-y) - var(--start-y)) * 0.52)) scale(1.3) rotate(calc(var(--rotation) * 0.52));
    filter: brightness(2.8) drop-shadow(0 0 15px var(--color));
  }
  75% {
    opacity: 0.75;
    transform: translate(calc(var(--start-x) + (var(--end-x) - var(--start-x)) * 0.75), calc(var(--start-y) + (var(--end-y) - var(--start-y)) * 0.75)) scale(1) rotate(calc(var(--rotation) * 0.75));
    filter: brightness(2.2) drop-shadow(0 0 12px var(--color));
  }
  90% {
    opacity: 0.5;
    filter: brightness(1.5) drop-shadow(0 0 8px var(--color));
  }
  100% {
    transform: translate(var(--end-x), var(--end-y)) scale(0.3) rotate(var(--rotation));
    opacity: 0;
    filter: brightness(0.3) drop-shadow(0 0 2px var(--color));
  }
}

.roleta-instructions {
  margin-top: 10px;
  color: white;
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
}

.roleta-instructions p {
  font-size: 16px; 
  margin-bottom: 10px;
  line-height: 1.3;
}

.roleta-instructions.hidden {
  opacity: 0;
}

.scroll-indicator {
  font-size: 24px;
  animation: bounce 2s infinite;
  color: #ffffff;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}


.touch-wrapper {
  margin-top: 30px; 
  transition: visibility 0s;
}


.touch-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.touch-hand-icon {
  width: 32px;
  height: auto;
  margin-bottom: 8px;
  padding-top: 40px; 
  animation: touchBounce 2s ease-in-out infinite;
}

.touch-text {
  color: #ffffff;
  font-size: 12px; 
  font-weight: 600;
  font-family: 'Work Sans', sans-serif;
}

@keyframes touchBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: scale(1) translateY(0);
  }
  40% {
    transform: scale(1.1) translateY(-8px);
  }
  60% {
    transform: scale(1.05) translateY(-4px);
  }
}


.touch-indicator {
  display: flex !important;
}


.skip-wrapper {
  margin-top: 45px; 
  display: flex;
  justify-content: center;
  align-items: center;
  transition: visibility 0s;
}


.skip-button {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px; 
  padding: 11px 36px; 
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 15px; 
  color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.skip-button:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  color: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

.skip-button:active {
  transform: translateY(0);
  background: rgba(255, 255, 255, 0.15);
}

.skip-text {
  display: block;
  line-height: 1;
}

.main-content {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.main-content.visible {
  opacity: 1;
  transform: translateY(0);
}



@media (max-width: 767px) {
  .roleta-frame {
    width: 280px;
    height: 280px;
  }
  
  .roleta-frame-container {
    height: 238px; 
    margin-bottom: 10px; 
  }
  
  .roleta-instructions {
    margin-top: 5px; 
  }
  
  .roleta-instructions p {
    font-size: 13px; 
    margin-bottom: 5px; 
  }
  
  .touch-wrapper {
    margin-top: 12px; 
  }
  
  .touch-hand-icon {
    margin-bottom: 3px; 
    padding-top: 40px; 
  }
  
  
  .skip-wrapper {
    margin-top: 38px; 
  }
  
  .skip-button {
    padding: 10px 33px; 
    font-size: 14px; 
    border-radius: 50px; 
  }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Crimson Pro', serif;
    color: var(--dark-blue-text);
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-red {
    color: var(--red);
}


.header {
  height: 90px;
  background-color: #d6cec7;
  display: flex;
  align-items: center;
  padding: 0 60px;
  position: relative;
  z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0;
}

.header__logo {
  width: 147px;
  height: 69px;
  object-fit: contain;
}

.header__nav ul {
    list-style: none;
    display: flex;
}

.header__nav ul li {
    margin-left: 32px;
}

.header__nav ul li a {
    text-decoration: none;
    color: var(--blue);
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
    transition: text-decoration 0.3s ease;
}

.header__nav ul li a:hover {
    text-decoration: underline;
}


.hero-section {
  background-color: #e7e0d7;
  background-image: url('img/hero-image.jpg');
  background-size: cover;
  background-position: right 8px;
  background-repeat: no-repeat;
  min-height: 760px;
  height: 760px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-bottom: 0;
}

.hero-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    position: relative;
    width: 100%;
}

.hero-section__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    max-width: 65%;
    padding-left: 60px;
    margin-top: 0;
    justify-content: flex-start;
}

.hero-section__info-line {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    margin-top: auto;
    margin-bottom: 40px;
}

.hero-section__voucher-logo {
    width: 492px;
    height: auto;
    margin-bottom: 0;
}

.hero-section__badge {
    position: static;
    width: 152px;
    height: 152px;
    margin: 0;
    flex-shrink: 0;
    padding-top: 32px;
}

.hero-section__title {
    font-size: 38px;
    color: #1b4f72;
    margin-bottom: 0;
    line-height: 1.0;
    max-width: 100%;
}

.hero-section__subtitle-box {
    background-color: transparent;
    padding: 0;
    color: var(--dark-blue-text);
    max-width: 100%;
}

.hero-section__subtitle {
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 10px;
    font-weight: 600;
}

.hero-section__subtitle-highlight {
    font-family: 'Work Sans', sans-serif;
    font-weight: bold;
    color: #f7b731;
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 1.2;
}

.hero-section__subtitle-box .hero-section__subtitle {
    color: #fff;
}

.hero-section__mobile-text {
    display: none;
}

@media (max-width: 767px) {
    .hero-section__info-line {
        display: none;
    }
    .hero-section__mobile-text {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 250px;
        width: 100%;
        background: linear-gradient(135deg, #41aa6d 0%, #3c9f55 100%);
        color: #153e59;
        text-align: center;
        font-size: 16px;
        font-weight: 600;
        padding: 0 18px;
        margin: 0 auto 0 auto;
        line-height: 1.1;
    }
    .hero-section__mobile-text p {
        width: 100%;
        margin: 0;
        line-height: 1.1;
        font-weight: 600;
    }
    .hero-section__mobile-highlight {
        color: #ffffff;
        margin-top: 9px;
        margin-bottom: 3px;
        display: block;
        font-size: 24px;
        font-weight: 600;
    }
    .hero-section .container {
        align-items: flex-start;
    }
    .hero-section__mobile-text br {
        display: block;
        content: '';
        margin-bottom: 8px;
    }
    .mobile-break {
        display: block;
        height: 2px;
        width: 100%;
    }
    .info-block,
    .cta-content,
    .cta-image-card {
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        max-width: 100%;
    }
    .benefits-grid,
    .testimonials-grid {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }
    .mobile-highlight-secondary {
        color: #ffffff;
        font-weight: 600;
        display: block;
    }
    .info-block__subtitle {
        padding-top: 10px;
    }
    .hero-section__badge {
        width: 159px !important;
        height: 159px !important;
    }
    .hero-section {
        position: relative;
        background-position: right 70px;
    }
    .hero-section__content {
        align-items: flex-start;
        text-align: left;
        padding-left: 12px;
        padding-top: 15px;
        max-width: 100%;
    }
}


.influencer-section {
    background-image: url('img/bg-blue.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
    height: auto;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.influencer-section .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

.influencer-main-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    flex-wrap: nowrap;
}

.influencer-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    height: 100%;
    width: 445px;
    max-width: 445px;
    min-width: 320px;
    position: relative;
    background-color: transparent;
    padding: 0;
    box-shadow: none;
    border-radius: 24px;
    margin-top: 0 !important;
}

.influencer-card__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 24px;
    margin-top: 0;
}

.info-block {
    width: 590px;
    max-width: 590px;
    min-width: 340px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background: url('img/bg-yellow.png'), linear-gradient(to bottom right, #fccc12, #fcb212);
    background-size: cover;
    background-position: center;
    padding: 24px 48px;
    border-radius: 24px;
    color: white;
    margin-left: -50px;
    position: relative;
    z-index: 10;
    margin-top: 0 !important;
    overflow: visible;
    margin-bottom: 0 !important;
}

.info-block__title {
    font-size: 34.5px;
    line-height: 1.1;
    padding-top: 14px;
    color: var(--blue);
}

.info-block__description {
    font-size: 18px;
    margin: 0 0 20px 0;
    color: #474747;
    line-height: 1.3;
    font-weight: 500;
}

.info-block__subtitle {
    font-size: 29.9px;
    color: var(--blue);
    font-weight: 400;
    line-height: 1;
    display: block;
    margin: 0 0 20px 0;
}

.promo-box {
    border: 2px dashed var(--red);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.promo-box__title {
    font-family: 'Crimson Pro', serif;
    color: var(--red);
    font-size: 24px;
    margin-bottom: 10px;
}

.promo-box__text {
    font-size: 16px;
}

.benefits-grid {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    margin: 40px auto 0 auto;
    max-width: 1046px;
    padding: 0 20px;
}

.benefit-item {
    width: 241px;
    height: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: transparent;
    padding: 0;
    box-shadow: none;
    border-radius: 30px;
}


.benefit-item:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    z-index: 5;
    transform: translateY(-10px) scale(1.05);
}


.why-participate-section {
    background-image: url('img/bg-green.png') !important;
    background-size: initial;
    background-position: center;
    background-repeat: repeat;
    background-attachment: fixed;
    padding: 96px 0;
}

.why-participate-section .container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 60px;
    padding: 0 24px;
}

.why-participate__content {
    flex: 1;
    max-width: 600px;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.why-participate__content h2 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.2;
}

.why-participate__content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-participate__content ul li {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.4;
    position: relative;
    padding-left: 36px;
    font-weight: 600;
}

.bullet-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url('img/white-check.png') no-repeat center center/contain;
    color: transparent;
    vertical-align: middle;
    margin-right: 10px;
    position: absolute;
    left: 0;
    top: 2px;
}

.why-participate__image {
    width: 799px;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


.testimonials-section {
    background-color: var(--off-white);
    padding: 80px 0;
    text-align: center;
}

.testimonials-section h2 {
    font-size: 42px;
    margin-bottom: 50px;
    padding-top: 90px;
    color: var(--dark-blue-text);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--gray-bg);
    border-radius: 20px;
    padding: 24px;
    min-height: 280px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.testimonial-card__quote {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 20px;
    text-align: left;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-card__author img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-card__author p {
    font-weight: bold;
    color: var(--dark-blue-text);
}

.stars {
    color: #f7c948;
    font-size: 20px;
}


.cta-section {
    background-color: var(--off-white);
    padding: 80px 0;
    display: flex;
    align-items: center;
}

.cta-section .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.cta-content {
    flex: 1;
    max-width: 600px;
    text-align: left;
    min-height: 560px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cta-content__logo {
    width: 394px;
    height: 142px;
    object-fit: contain;
    margin-bottom: 22px;
}

.cta-content h2 {
    font-size: 32px;
    margin-bottom: 14px;
    color: #1978b6;
    line-height: 1.1;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 500;
}

.cta-content__promo-highlight {
    font-family: 'Crimson Pro', serif;
    color: #ed1c24;
    font-size: 32px !important;
    font-weight: 900 !important;
    line-height: 1.05;
    padding-top: 6px;
    margin-top: 6px;
    margin-bottom: 8px;
}

.cta-content__promo-details {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 700 !important;
    color: #ed1c24;
}

.cta-content h3 {
    font-size: 32px;
    color: #1978b6;
    line-height: 1.1;
    margin-bottom: 16px;
    margin-top: 17px;
}

.cta-content__disclaimer {
    font-size: 12px !important;
    color: #777;
    margin-top: 16px;
}

@media (min-width: 992px) {
  .cta-content__disclaimer {
    font-size: 12px !important;
  }
}

@media (max-width: 767px) {
  .cta-content__disclaimer {
    font-size: 12px !important;
  }
}

.cta-image-card {
    position: relative;
    width: 480px;
    height: auto;
    border-radius: 24px;
    overflow: visible;
}

.cta-image-card__image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.cta-image-card__social-icons {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px 20px;
    border-radius: 50px;
}

.cta-image-card__social-icons img {
    height: 30px;
}


.cta-separator {
    width: 100%;
    max-width: 412px;
    border: none;
    border-top: 2px dotted #1978b6;
    margin: 16px 0 6px 0;
}

@media (max-width: 600px) {
    .cta-separator { max-width: 225px; }
}


.contact-section {
    background-image: url('img/bg-green.png');
    background-size: initial;
    background-position: center;
    background-repeat: repeat;
    background-attachment: fixed;
    padding: 80px 0;
}

.contact-section .container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    padding: 0 24px;
}

.contact-form-wrapper {
    flex: 1;
    max-width: 600px;
    background-color: #6bbc54;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper h2 {
  font-size: 36px;
  color: var(--blue);
  margin-bottom: 30px;
  text-align: left;
  margin-left: 0;
  padding-left: 10px;
  line-height: 1.1;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--dark-blue-text);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    background-color: #d5e2d1;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    background-color: var(--blue);
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.contact-form button:hover {
    background-color: #004c7d;
}

.contact-info {
    flex: 1;
    max-width: 400px;
    text-align: right;
}

.contact-info p {
  font-size: 18px;
  color: var(--dark-blue-text);
  margin-bottom: 15px;
  font-weight: 500;
}

.contact-info p:first-child {
  font-weight: 700;
  line-height: 1.1;
}

.contact-info__logo-white {
    width: 334px;
    height: auto;
    object-fit: contain;
    margin-top: 40px;
    margin-bottom: 20px;
}

.contact-info__social-icons a img {
    width: 32px;
    height: 32px;
    margin-left: 15px;
}


.footer {
    background-color: var(--green);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.footer .container p {
    color: #fff;
    font-size: 14px;
}


@media (max-width: 992px) {
    .influencer-main-row {
        display: grid;
        grid-template-columns: 323px 485px;
        align-items: start;
        gap: 14px;
        justify-content: center;
        padding: 10px;
    }
    
    .influencer-card,
    .info-block {
        width: 100%;
        height: auto;
        min-height: auto;
        max-height: 460px;
    }

    .info-block {
        width: 475px !important;
        margin-left: 0;
        padding: 24px;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        transform: none !important;
        margin-top: 0 !important;
        overflow: hidden;
    }

    .info-block__title { font-size: 30px; line-height: 1.1; }
    .info-block__description { font-size: 16px; }
    .info-block__subtitle { font-size: 26px; }

    
    .promo-splash {
        width: 100%;
        max-width: 100%;
        height: 900px;
        margin: -25px auto 0 auto !important;
        transform-origin: center;
        position: relative;
        top: 20px;
        animation: pulseScaleRotate 3s ease-in-out infinite;
        background-size: contain;
        background-repeat: no-repeat;
        transform: scale(1); 
    }
    
    .travel-info-title { font-size: 26px; }
    .travel-info-date { font-size: 20px; }
    .travel-info-separator { max-width: 100%; }
    .travel-info-boarding { font-size: 16.2px; }

    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 64px;
        max-width: 880px; 
        margin: 144px auto 0 auto;
    }

    .benefit-item {
        width: 100%;
    }

    .travel-info-block {
        margin-top: 20px !important;
        margin-bottom: 0 !important;
        transform: scale(0.8);
        transform-origin: left top;
        position: relative;
    }

    .info-block {
        height: auto !important;
        min-height: 0 !important;
        max-height: 486px !important;
    }

    .why-participate-section .container {
        flex-direction: column;
        min-height: unset;
        height: auto;
        gap: 32px;
    }
    .why-participate__content,
    .why-participate__image {
        width: 100%;
        min-height: unset;
        height: auto;
        max-width: 100%;
    }
    
    
    .why-participate-text-block {
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .hero-section__voucher-logo {
        width: 320px;
        margin-bottom: 24px;
    }
    .hero-section__title {
        font-size: 32px;
    }
    .hero-section__subtitle {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .header {
        padding: 15px 20px;
        height: auto;
        flex-direction: column;
    }

    .header__logo {
        width: 143px;
        height: 67px;
    }

    .header__nav ul {
        margin-top: 10px;
        flex-direction: column;
        gap: 2px;
        line-height: 1.1;
    }

    .header__nav ul li {
        margin-left: 0;
    }

    .container {
        padding: 0 15px;
    }

    .hero-section {
        position: relative;
        background-position: right 70px;
    }
    .hero-section__badge {
        position: absolute;
        top: 12px;
        right: 12px;
        width: 90px;
        height: 90px;
        margin: 0;
        z-index: 2;
    }
    .hero-section__content {
        align-items: flex-start;
        text-align: left;
        padding-left: 12px;
        padding-top: 15px;
        max-width: 100%;
    }
    .hero-section__voucher-logo {
        width: 270px;
        max-width: 100%;
        margin-left: 0;
        margin-right: auto;
        display: block;
        text-align: left;
        margin-top: 0;
        margin-bottom: 8px;
    }
    .hero-section__title {
        text-align: left;
        font-size: 23px;
        margin-left: 0;
        margin-top: 0;
    }
    .hero-section__badge {
        order: initial;
        width: 120px;
        height: 120px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .hero-section__subtitle-box {
        text-align: center;
    }

    .influencer-section,
    .why-participate-section,
    .testimonials-section,
    .cta-section,
    .contact-section {
        padding: 40px 0;
    }

    .influencer-section .container,
    .cta-section .container,
    .contact-section .container {
        gap: 30px;
        flex-direction: column;
        align-items: center;
    }

    .info-block__title,
    .why-participate__content h2,
    .testimonials-section h2,
    .cta-content h2,
    .contact-form-wrapper h2 {
        font-size: 28px;
    }

    .info-block__title {
        font-size: 41.4px;
        line-height: 1.1;
    }

    .info-block__subtitle {
        font-size: 35.88px;
    }

    .testimonial-card {
        height: auto;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 90%;
    }

    .cta-content__logo {
        width: 300px;
        height: auto;
    }

    .contact-info p {
        font-size: 12.8px; 
    }

    .contact-info__logo-white {
        width: 250px;
        height: auto;
    }

    .contact-info__social-icons a img {
        width: 50px;
        height: 50px;
    }

    .footer {
        height: 60px;
    }
    
    .promo-splash {
        background-image: url('img/promo-splash-mobile.png');
        height: 180px;
        width: 100%;
        max-width: 100%;
        margin: 32px auto 32px auto;
        animation: pulseScaleRotate 3s ease-in-out infinite;
        background-size: contain;
        background-repeat: no-repeat;
        transform-origin: center center;
        transform: none;
    }

    .influencer-card,
    .info-block {
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
    }
    .influencer-card__image {
        width: 100%;
        height: auto;
        display: block;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 100%;
    }
    .benefit-item {
        width: 100%;
        max-width: 100%;
        display: block;
    }

    .influencer-main-row {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 60px;
        padding: 10px;
    }
    .influencer-card {
        width: 100%;
        max-width: 350px;
        height: auto !important;
        order: 1;
    }
    .info-block {
        width: 100%;
        max-width: 350px;
        margin-left: 0 !important;
        order: 2;
        padding: 16px 32px;
    }

    
    .why-participate-text-block {
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }


}


.promo-splash {
    width: 100%;
    max-width: 520px;
    height: 180px;
    margin: 0 auto;
    background: url('img/promo-splash-desk.png') no-repeat center center/contain;
    border-radius: 10px;
    display: block;
    animation: pulseScaleRotate 3s ease-in-out infinite;
    transform-origin: center center;
    transform: scale(1); 
}


@keyframes pulseScaleRotate {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}


@keyframes pulseScaleRotate992px {
    0% {
        transform: scale(1.3);
    }
    50% {
        transform: scale(1.43);
    }
    100% {
        transform: scale(1.3);
    }
}


@keyframes pulseScaleRotate1199px {
    0% {
        transform: scale(1.08);
    }
    50% {
        transform: scale(1.188);
    }
    100% {
        transform: scale(1.08);
    }
}


@media (max-width: 767px) {
    .promo-splash {
        background-image: url('img/promo-splash-mobile.png');
        height: 180px;
        width: 100%;
        max-width: 100%;
        margin: 32px auto 32px auto;
        animation: pulseScaleRotate 3s ease-in-out infinite;
        background-size: contain;
        background-repeat: no-repeat;
        transform-origin: center center;
        
    }
    .info-block {
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
    }
}

.travel-info-block {
    margin: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding-top: 20px;
}

.travel-info-title {
    font-family: 'Crimson Pro', serif;
    font-size: 32px;
    color: var(--blue);
    font-weight: 700;
    letter-spacing: -1px;
    margin: 0 0 8px 0;
    display: block;
    line-height: 1.1;
}

.travel-info-date {
    color: #ed1c24;
    font-family: 'Work Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0;
    display: block;
    line-height: 1.1;
}

.travel-info-separator {
    width: 100%;
    max-width: 350px;
    margin: 8px 0;
    display: block;
}

.travel-info-boarding {
  color: #474747;
  font-family: 'Work Sans', sans-serif;
  font-size: 22.5px;
  font-weight: 500;
  display: block;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 0;
  line-height: 1.1;
}

@media (max-width: 767px) {
  .travel-info-title {
    font-size: 31.2px;
  }
  .travel-info-date {
    font-size: 22px;
  }
  .travel-info-boarding {
    font-size: 18.9px;
  }
  .travel-info-separator {
    max-width: 275px;
  }
  .travel-info-block {
    align-items: flex-start;
    text-align: left;
  }
  .info-block__subtitle {
    padding-top: 10px;
  }
}



.influencer-main-row {
    align-items: flex-start;
    justify-content: space-between;
}
.influencer-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    height: 100%;
}
.influencer-card__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 24px;
    margin-top: 0;
}
.info-block {
    
}
.promo-splash {
    
}
.travel-info-block {
    
}


@media (min-width: 1199px) {
  .why-participate-text-block {
    transform: scale(1);
    transform-origin: center center;
  }
}

@media (min-width: 992px) {
  .why-participate-section .container {
    flex-direction: row;
    min-height: unset;
    height: auto;
    gap: 32px;
    align-items: stretch;
  }
  .why-participate__content {
    width: 50%;
    min-height: unset;
    height: auto;
    max-width: 498px;
  }
  .why-participate__image {
    width: 50%;
    min-height: unset;
    height: auto;
    max-width: 100%;
  }
  .why-participate-text-block {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
  }
  .testimonial-card {
    min-height: 300px;
  }
}

.why-participate-text-block {
  font-weight: 600;
}

.why-participate-text-block .feature-item + .feature-item {
  margin-top: 1.2em;
}

.why-participate-text-block span {
  line-height: 1.3;
}

.why-participate-text-block br {
  line-height: normal;
  margin: 0;
  padding: 0;
  display: block;
  height: auto;
}


.why-participate-text-block > strong:first-child {
  font-size: 23.46px; 
  color: #fff;
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  display: block;
  margin: 0 0 20px 0;
  padding: 0;
}


.why-participate-text-block .feature-text strong {
  font-size: 17px;
  color: #333;
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  display: inline-block;
  margin: 0;
  padding: 0;
  width: 100%;
}

.why-participate-text-block br.feature-spacing {
  line-height: 1.92;
  margin-bottom: 0;
  display: block;
}


.why-participate-text-block .feature-item {
  display: flex;
  align-items: flex-start;
  margin-top: 0.315em;
}
.why-participate-text-block .feature-item:first-child {
  margin-top: 0;
}
.why-participate-text-block .feature-check {
  width: 18px;
  height: 18px;
  background: url('img/white-check.png') no-repeat center center/contain;
  display: inline-block;
  margin-right: 10px;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-participate-text-block .feature-text {
  display: block;
}



@media (max-width: 425px) {
  .hero-section__badge {
    top: 145px;
  }
}

@media (min-width: 768px) {
  
  .hero-section__content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .hero-section__info-line {
    margin-top: auto;
    margin-bottom: 40px;
  }
  .hero-section__subtitle-box .hero-section__subtitle:last-child {
    color: #f7b73b;
  }
  .hero-section__voucher-logo {
    padding-top: 30px;
  }
}



@media (width: 992px) {
  .info-block {
    min-height: calc(100% + 27px) !important;
  }
  
  .benefits-grid {
    transform: scale(0.97);
    transform-origin: top center;
    gap: 0 !important; 
  }
}


@media (min-width: 768px) and (max-width: 991px) {
  .promo-splash {
    transform: scale(1.3);
    transform-origin: center center;
    animation: pulseScaleRotate992px 3s ease-in-out infinite;
  }
}


@media (min-width: 1199px) {
  .promo-splash {
    transform: scale(1.08);
    transform-origin: center center;
    animation: pulseScaleRotate1199px 3s ease-in-out infinite;
  }
}

@media (width: 1199px) {
  
  .info-block {
    width: 548px !important;   
    max-width: 548px !important;
  }
}


@media (min-width: 1199px) {
  .info-block__title {
    font-size: 36px !important; 
    line-height: 1.1;
  }
  .info-block__subtitle {
    font-size: 31.2px !important; 
  }
}

@media (min-width: 992px) {
  .influencer-section .info-block {
    flex: 0 0 548px !important;
    width: 548px !important;
    max-width: 548px !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .influencer-main-row {
    grid-template-columns: 360px 390px; 
    
    transform: translateX(-15px);
  }

  .info-block {
    width: 390px !important; 
    max-width: 390px !important;
  }

  .influencer-section .info-block {
    transform: translateX(-19px);
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .benefits-grid {
    transform: scale(0.97);
    transform-origin: top center;
    gap: 0 !important;
    column-gap: 0 !important;
    row-gap: 0 !important;
  }
  
  .info-block__title {
    font-size: 36px !important; 
    line-height: 1.1;
  }
  .info-block__subtitle {
    font-size: 31.2px !important; 
  }
}


@media (min-width: 768px) and (max-width: 991px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 850px;
  }
  
  
  .testimonials-grid .testimonial-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: calc(50% - 12px); 
    justify-self: start;
  }
}


.about-section {
  background-image: url('img/bg-green.png');
  background-size: initial;
  background-position: center;
  background-repeat: repeat;
  background-attachment: fixed;
  padding: 60px 0;
}


@media (min-width: 768px) {
  .about-section {
    padding: 60px 24px; 
  }
}
.about-section__container {
  background-color: rgba(37, 132, 57, 0.20); 
  border-radius: 24px;
  padding: 60px 40px;
  display: flex;
  gap: 60px;
  align-items: flex-start;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}
.about-section__image {
  width: 420px;
  max-width: 100%;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.about-section__content {
  max-width: 600px;
}
.about-section__content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--dark-blue-text);
  line-height: 1.2;
}
.about-section__content h3 {
  font-size: 22.4px;
  margin-top: 24px;
  margin-bottom: 16px;
  color: var(--dark-blue-text);
  line-height: 1.2;
}
.about-features {
  list-style: none;
  margin: 0;
  padding: 0;
}
.about-features .feature-item + .feature-item {
  margin-top: 12px;
}
.about-features .feature-item {
  display: flex;
  align-items: flex-start;
}
.about-features .feature-check {
  width: 18px;
  height: 18px;
  background: url('img/white-check.png') no-repeat center center/contain;
  display: inline-block;
  margin-right: 10px;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-features .feature-text {
  display: inline-block;
  vertical-align: middle;
  font-weight: 600;
  line-height: 1.25;
}
.about-call {
  font-size: 18px;
  font-weight: 600;
  font-style: italic;
  margin-top: 24px;
  color: #153e59;
}


.about-section__content p + p {
  margin-top: 16px; 
}

@media (max-width: 767px) {
  .about-section__container {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  .about-section__image {
    width: 100%;
  }
  .about-section__content h2 {
    font-size: 28px;
  }
  .about-section {
    padding: 40px 15px;
  }
}


@media (min-width: 768px) {
  .about-section__image {
    flex: 0 0 300px;
    max-width: 300px;
  }
}


@media (max-width: 992px) {
  .about-section__container {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  .about-section__image {
    width: 100%;
    max-width: 420px; 
    flex: 0 0 auto;
    margin-left: calc(-50vw + 50% + 60px); 
  }
}

.about-section__content p {
  font-weight: 500;
}

.about-section__content p strong {
  font-weight: 600;
}


.cta-content h2 .text-red {
    color: #1978b6;
}

@media (max-width: 767px) {
  .cta-image-card {
    width: 90%;
    max-width: 320px;
    height: auto;
    margin: 0 auto;
  }
  .cta-content {
    padding-left: 18px;
    padding-right: 18px; 
  }
}


.mobile-break { 
  display: block !important; 
  height: 0; 
}


.desktop-break { display:none; }
@media (min-width:768px){
  .desktop-break { display:block; height:0; }
}


.break-767-899, .break-992 { display: inline; }
@media (min-width: 767px) and (max-width: 899px) {
  .break-767-899 { display: block; height: 0; }
}

@media (min-width: 992px) {
  .break-992 { display: block; height: 0; }
}

.hero-section__subtitle-box {
  font-size: 80%;
}


@media (max-width: 767px) {
  
  .cta-content__promo-highlight,
  .cta-content h3 {
    font-size: 28px !important;
  }
}


@media (min-width: 768px) {
  .contact-section .container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
  }
  .contact-form-wrapper {
    max-width: 600px !important;
    width: 100%;
    flex: none;
    padding: 40px 18px;
  }
  .contact-info {
    max-width: 400px;
    width: 100%;
    flex: none;
  }
  .contact-form {
    padding-left: 16px;
    padding-right: 16px;
  }
}


@media (min-width: 768px) {
  .contact-form input[type="text"],
  .contact-form input[type="email"],
  .contact-form textarea {
    padding: 8px; 
  }
}


@media (min-width: 768px) {
  .contact-form {
    padding-left: 16px;
    padding-right: 16px;
  }
  .contact-form input[type="text"],
  .contact-form input[type="email"],
  .contact-form textarea,
  .contact-form button {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
  }
}

@media (max-width: 991px) {
  .contact-section .container {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .contact-form-wrapper,
  .contact-info {
    max-width: 100% !important;
    width: 100%;
    padding: 32px 18px;
  }
  .contact-form {
    padding-left: 8px;
    padding-right: 8px;
  }
  .contact-info {
    text-align: center;
  }
  .contact-info__logo-white {
    margin-left: auto;
    margin-right: auto;
  }
  .contact-info__social-icons {
    justify-content: center;
    display: flex;
    gap: 12px;
  }
}
@media (max-width: 600px) {
  .contact-form-wrapper,
  .contact-info {
    padding: 18px 10px;
  }
  .contact-form {
    padding-left: 0;
    padding-right: 0;
    width: 92%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 1199px) {
  .info-block__title {
    font-size: 36px !important; 
    line-height: 1.1;
  }
  .info-block__subtitle {
    font-size: 31.2px !important; 
  }
}

@media (max-width: 992px) and (min-width: 767px) {
  .cta-section .container {
    transform: scale(0.8);
    transform-origin: center center;
  }
}

@media (min-width: 1199px) {
  .hero-section__content {
    padding-left: 184px;
  }
}

@media (min-width: 767px) and (max-width: 992px) {
  .hero-section__title {
    white-space: nowrap;
  }
}

@media (min-width: 992px) {
    .cta-section .container {
        padding: 0 60px;
    }
    
    
    .contact-section .container {
        display: flex !important;
        justify-content: center !important;
        align-items: flex-start !important;
        gap: 60px !important;
        padding: 0 24px !important;
        min-height: auto !important;
        height: auto !important;
    }
    
    
    .hero-section__voucher-logo {
        margin-bottom: 15px;
    }
}

@media (max-width: 413px) {
  .influencer-main-row {
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    gap: 24px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .influencer-card,
  .info-block {
    min-width: 0 !important;
    max-width: 95vw !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
  }
  .benefits-grid {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    gap: 18px !important;
  }
  .benefit-item {
    width: 90vw !important;
    max-width: 320px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
  }
}



@media (min-width: 667px) and (max-width: 991px) {
  .contact-form-wrapper {
    width: 620px !important;
    max-width: 620px !important;
    flex: none !important;
    box-sizing: border-box !important;
  }
}