@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root{
    --primary: #2563EB;
    --bg: #efefef;
    --muted: #6b6b6b;
    --text: #1f2933;
    --white: #ffffff;
    --card-bg: #ffffff;  
}


html {
    scroll-behavior: smooth;  
}



* {
	margin: 0;
	padding: 0;
	list-style: none;
	text-decoration: none;
}


body {
	background: #efefef;
	font-family: Montserrat, sans-serif;
}

.no-scroll {
	overflow: hidden;
}

button {
	border: none;
	transition: 0.36s;
}

button:hover {
	cursor: pointer;
}

.main-container {
	width: 100%;
	display: flex;
	align-items: center;
	flex-direction: column;
}

.content {
	width: 100%;
	max-width: 1200px;
}

.header-container {
	display: flex;
	align-items: center;
	width: 100%;
	border-bottom: 1px solid rgba(0, 0, 0, .25);
}

.header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 5px 20px;
}

.logo-header {
	display: flex;
    align-items: center;
    color: #000000;
    position: relative;
    padding: 5px 0;
}

.logo-header img {
	height: 160px;
    width: 160px;
    position: absolute;
    z-index: 43;
}

.logo-header p {
	font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    margin-left: 125px;
}

.navigations {
	display: flex;
	align-items: center;
	gap: 15px;
	font-size: 16px;
}

.navigations a {
	color: #000;
	font-weight: 500;
}

.hero-sections-container {
	display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;
}

.hero-left {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.hero-left-text {
	display: flex;
	flex-direction: column;
	gap: 10px;
	font-size: 80px;
	font-weight: 700;
}

.hero-left-text span {
	font-weight: 600;
	font-size: 26px;
}

.hero-btn-conatiner {
	display: flex;
	gap: 20px;
}

.hero-btn-check, .hero-btn-scroll  { 	 
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	padding: 15px 20px;
	cursor: pointer;
	color: #fff;
	background-image: radial-gradient(circle 200px at 30% 30%, #2563EB 40%, #0b3177 100%);
	background-size: 200% 300%;
	background-position: 50% 50%;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	animation: gradientBreath 3s ease-in-out infinite;
}


.hero-btn-scroll {
	background: none;
	color: #000;
	border: 2px solid #b5b5b5;

}

.hero-btn-check:hover {
	border: 2px solid #1E40AF;
	transform: translateY(-10px);
	transform: translateY(-3px) scale(1.03);
	box-shadow: 0 10px 20px rgba(0, 79, 255, 0.4);
}
			

.benefits-container {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 30px;
	margin-top: 20px;
}


.benefits-title {
	font-size: 40px;
	font-weight: 700;
}

.benefits-cards-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	gap: 10px;
}


.benefits-card {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 20px;
	height: 180px;
	width: 100%;
	border: 2px solid #b5b5b5;
	border-radius: 10px;
	font-weight: 600;
	text-align: center;
	color: #eaeaea;
	background-image: radial-gradient(circle 250px at 30% 30%, #2563EB 40%, #1245a3 100%);
	background-size: 200% 200%;
	animation: gradientBreath 6s ease-in-out infinite;
	transition: transform 0.3s ease, box-shadow 0.3s ease	
}

.services-card {
	display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    gap: 20px;
    height: 180px;
    width: 100%;
    border: 2px solid #b5b5b5;
    border-radius: 10px;
    font-weight: 600;
    font-size: 23px;
    padding-left: 20px;
    color: #eaeaea;
    background-image: radial-gradient(circle 250px at 30% 30%, #2563EB 40%, #1245a3 100%);
    background-size: 200% 200%;
    animation: gradientBreath 4s ease-in-out infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.benefits-card i, .services-card i {
	color: #eaeaea; 
	font-size: 86px;
}

.benefits-card:hover, .services-card:hover {
	border: 2px solid #1E40AF;
	transform: translateY(-10px);
	transform: translateY(-3px) scale(1.03);
	box-shadow: 0 10px 20px rgba(0, 79, 255, 0.4);
}



.about-us-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background-color: #efefef;
  gap: 40px;
}

.about-us-content {
  flex: 1 1 400px;
  max-width: 600px;
}

.about-us-title {
  font-size: 2.5rem;
  color: #2563EB;
  margin-bottom: 20px;
  font-weight: 700;
}

.about-us-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
}

.about-us-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-us-highlights li {
  font-size: 1rem;
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
  color: #2563EB;
  font-weight: 600;
}

.about-us-highlights li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0;
  color: #2563EB;
}

.about-us-image {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-us-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  object-fit: cover;
}


.how-we-work-container {
  background-color: #efefef;
  text-align: center;
  margin-top: 300px;
}

.how-we-work-title {
  font-size: 2.2rem;
  color: #2563EB;
  margin-bottom: 40px;
  font-weight: 700;
}

.progress-bar {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  margin: 0 auto;
  gap: 10px;
}

.progress-step {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #333;
  font-weight: 600;
  min-width: 80px;
  gap: 10px;
}

.progress-icon {
  width: 50px;
  height: 50px;
  background-color: #efefef;
  border: 3px solid #2563EB;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3rem;
  color: #2563EB;
  transition: all 0.5s ease;
  flex-shrink: 0;
}

.progress-step span {
	background: #efefef
}	

.progress-line {
  position: absolute;
  top: 25px;
  left: 5%;
  width: 90%;
  height: 4px;
  background-color: #ccc;
  z-index: 1;
  border-radius: 2px;
}

.progress-fill {
  position: absolute;
  top: 25px;
  left: 5%;
  width: 0%;
  height: 4px;
  background-color: #2563EB;
  border-radius: 2px;
  z-index: 1;
  animation: fillProgress 9.5s linear infinite;
}


.trusted-by-section {
  background-color: #efefef;
  margin-top: 300px;
  text-align: center;
}

.trusted-by-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2563EB;
  margin-bottom: 40px;
}

.logo-slider {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: scrollLogos 30s linear infinite;
}

.logo-track img {
  height: 60px;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: transform 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
}

.logo-track img:hover {
  transform: scale(1.1);
  filter: grayscale(0%) drop-shadow(0 0 4px rgba(37, 99, 235, 0.5));
  opacity: 1;
}


.site-footer{
    background: var(--bg);
    padding: 48px 0;
    font-family: Inter, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text);
    border-top: 2px solid var(--primary);
    width: 100%;
    margin-top: 300px;
}

  .footer-inner{
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 300px;
    gap: 28px;
    align-items: start;
  }

  
  .footer-brand{
    display: flex;
    gap: 14px;
    align-items: center;
  }

  .brand-mark{
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), #1a4fb0);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 6px 20px rgba(37,99,235,0.12);
    flex-shrink: 0;
  }

  .brand-name{
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
  }

  .brand-sub{
    margin-top: 4px;
    font-size: 13px;
    color: var(--muted);
  }

  
  .footer-contacts{
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .contacts-title{
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 6px 0;
  }

  .contact-row{
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    text-decoration: none;
    font-size: 15px;
  }

  .contact-row i{
    min-width: 26px;
    min-height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
  }

  .contact-row .contact-text{
    color: #222;
  }

  .contact-mail:hover,
  .phone-link:hover{
    color: var(--primary);
  }

  .contact-phone{
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: nowrap;
  }

  .phone-link{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration: none;
    color: inherit;
  }

  .messengers{
    display: flex;
    gap: 10px;
    align-items: center;
  }

  .msgr{
    display: inline-flex;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: transparent;
    border: 1px solid rgba(37,99,235,0.12);
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    transition: all .18s ease;
    font-size: 16px;
  }

  .msgr:hover{
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(37,99,235,0.18);
    border-color: transparent;
  }

  .msgr:hover i {
  	color: var(--white);
  }

  .contact-person{
    font-size: 14px;
    color: var(--muted);
    margin-top: 6px;
  }

  .contact-person i{ color: var(--primary); }

  
  .footer-meta{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    color: var(--muted);
    font-size: 14px;
  }

  .meta-top{
    background: linear-gradient(90deg, rgba(37,99,235,0.06), rgba(37,99,235,0.02));
    padding: 10px 14px;
    border-radius: 10px;
    color: var(--text);
    font-weight: 600;
    text-align: right;
  }

  .meta-bottom{
    font-size: 13px;
    color: var(--muted);
  }

  
  @media (max-width: 920px){
    .footer-inner{
      grid-template-columns: 1fr;
      text-align: center;
    }
    .footer-meta{ align-items: center; }
    .brand-mark{ margin: 0 auto; }
  }

  
  @media (max-width: 420px){
    .brand-mark{ width:56px; height:56px; font-size:16px; }
    .msgr{ width:34px; height:34px; font-size:14px; }
  }

  
  .msgr:focus, .contact-mail:focus, .phone-link:focus{
    outline: 3px solid rgba(37,99,235,0.18);
    outline-offset: 2px;
  }




@keyframes scrollLogos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


@media (max-width: 768px) {
  .logo-track img {
    height: 40px;
  }
  .logo-track {
    gap: 30px;
  }
}



@keyframes fillProgress {
  0% { width: 0%; }
  20% { width: 20%; }
  40% { width: 40%; }
  60% { width: 60%; }
  80% { width: 80%; }
  100% { width: 90%; }
}


.progress-step:nth-child(1) .progress-icon { animation: stepPulse 9.5s infinite; animation-delay: 0s; }
.progress-step:nth-child(2) .progress-icon { animation: stepPulse 9.5s infinite; animation-delay: 2s; }
.progress-step:nth-child(3) .progress-icon { animation: stepPulse 9.5s infinite; animation-delay: 4s; }
.progress-step:nth-child(4) .progress-icon { animation: stepPulse 9.5s infinite; animation-delay: 6s; }
.progress-step:nth-child(5) .progress-icon { animation: stepPulse 9.5s infinite; animation-delay: 8s; }

@keyframes stepPulse {
  0%, 100% {
    background-color: #efefef;
    color: #2563EB;
    transform: scale(1);
    box-shadow: none;
  }
  10%, 15% {
    background-color: #2563EB;
    color: #fff;
    transform: scale(1.15);
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.6);
  }
}



.burger {
    display: none;          /* приховано на десктопі */
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--primary);
    cursor: pointer;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background: #fff;
    border-top: 1px solid #ddd;
}

.mobile-nav a {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    font-weight: 600;
    color: var(--primary);
}

.mobile-nav.show {
    display: flex;          /* показуємо коли активне */
}

/* Адаптив */
@media (max-width: 768px) {
    .navigations-container {
        display: none;      /* ховаємо звичайне меню */
    }
    .burger {
        display: block;     /* показуємо бургер */
    }
}


@media (max-width: 768px) {
  .progress-bar {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .progress-line,
  .progress-fill {
    top: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 90%;
  }

  .progress-fill {
    animation: fillVertical 10s linear infinite;
  }

  @keyframes fillVertical {
    0% { height: 0%; }
    20% { height: 20%; }
    40% { height: 40%; }
    60% { height: 60%; }
    80% { height: 80%; }
    100% { height: 100%; }
  }
}









@keyframes gradientBreath {
  0% {
    background-position: 30% 30%;
    
  }
  25% {
    background-position: 70% 40%;
    
  }
  50% {
    background-position: 50% 70%;
    
  }
  75% {
    background-position: 20% 60%;
    
  }
  100% {
    background-position: 30% 30%;
  
  }
}



@media (max-width: 1024px) {

    .header {
        padding: 15px 20px;
    }

    .hero-sections-container,
    .about-us-container {
        padding: 0 20px;
        gap: 30px;

    }

    .benefits-cards-container,
    .services-cards-container {
        gap: 25px;
    }
}

@media (max-width: 768px) {

    
    .navigations {
        display: none;                /* Ховаємо десктопне меню */
    }

    .burger {
        display: block;               /* Показуємо бургер */
        background: none;
        border: none;
        font-size: 1.8rem;
        color: var(--primary);
        cursor: pointer;
    }

    .mobile-nav {
        display: none;
        flex-direction: column;
        background: #eee;
        border-top: 1px solid #ddd;
    }

    .mobile-nav.show {
        display: flex;
        position: absolute;
        top: 113px;
        width: 100%;
        align-items: center;
        height: 100%;
        z-index: 999;
    }

    .mobile-nav a {
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
        font-weight: 600;
    }

    
    .hero-sections-container {
        flex-direction: column;
        text-align: center;
        padding: 30px 10px;
    }

    .hero-left-text {
        font-size: 2rem;
    }

    .hero-img {
        max-width: 90%;
        height: auto;
        margin-top: 20px;
    }

    
    .about-us-container {
        flex-direction: column;
        text-align: center;
    }

    .about-us-image {
        order: -1; 
    }

    
    .benefits-cards-container,
    .services-cards-container {
       flex-direction: column;
    }

    
    .footer-inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}


@media (max-width: 480px) {

    .hero-left-text {
        font-size: 1.6rem;
    }

    .about-us-title,
    .benefits-title {
        font-size: 1.4rem;
    }

    .hero-btn-check,
    .hero-btn-scroll {
        padding: 12px 18px;
        font-size: 0.9rem;
    }

    .brand-name {
        font-size: 1.2rem;
    }

    .footer-brand {
    	flex-direction: column;
    }

    .footer-contacts {
    	align-items: center;
    }

    .meta-top {
    	text-align: center;
    }

    .benefits-cards-container,
    .services-cards-container {
        width: 90%;
    }

    .about-us-image, .hero-sections-container img {
    	display: none;
    }

    .site-footer, .how-we-work-container, .trusted-by-section  {
    	margin-top: 100px;
    }

    .hero-btn-conatiner {
    	gap: 5px;
    }
}