
* { box-sizing: border-box; }

body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, sans-serif;
  background: #0A0A0A;
  color: #e0e0e0;
  line-height: 1.6;
  text-align: center;
}

html {
  scroll-behavior: smooth;
}

h1 {
  font-size: 3rem;
  margin: 0 0 10px;
}

h2 {
  font-size: 2.2rem;
  margin-top: 40px;
}

.hero-section {
  background-image: url('../images/header-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  position: relative;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.3rem;
}

.hero-content .logo {
  max-width: 160px;
  margin: 0 auto 20px auto;
  display: block;
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.4));
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 8px;
}

.scroll-button {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.75rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background-color: #00b894;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  position: relative;
  z-index: 2;
}

.scroll-button:hover {
  background-color: #019874;
}

#pricing {
  padding: 80px 20px;
  background: #ffffff;
  /* background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)), url('../images/fonpr.jpg') center/cover no-repeat; */
  color: #000000;
  text-align: center;
}

.pricing h2 {
  margin-bottom: 40px;
}

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.card {
  background-color: rgb(255, 255, 255);
  color: #000000;
  padding: 30px;
  border-radius: 10px;
  width: 280px;
  box-shadow: 0 0 20px rgba(48, 170, 50, 0.2);
}
.card h3 {
  font-size: 26px;
  margin-bottom: 10px;
  color: #000000;
}
.card .price {
  font-size: 22px;
  color: #019874;
  margin-bottom: 20px;
}
.card:hover {
  transform: scale(1.10);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.card ul li {
  margin: 8px 0;
}

.card .btn {
  display: inline-block;
  background: #019874;
  padding: 10px 20px;
  border-radius: 5px;
  color: white;
  text-decoration: none;
  transition: background .3s;
}

.card .btn:hover {
  background: #45a045;
}

#benefits {
  padding: 60px 20px;
  background: linear-gradient(135deg, #ffffff, #ffffff);
  color: #000000;
  text-align: center;
}

#benefits h2 {
  font-size: 32px;
  margin-bottom: 30px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.benefit {
  background: rgba(251, 250, 250, 0.3);
  padding: 1rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  color: #000000;
  font-weight: 500;
  box-shadow: 0 0 20px rgba(48, 170, 50, 0.2);
}

.benefit i {
  font-size: 1.2rem;
  margin-right: 0.7rem;
  color: #00d26a;
}

.benefit:hover {
  transform: translateY(-4px);
  background-color: #d7d2d2;
}

.contact-form {
  max-width: 1000px;
  margin: 60px auto;
  padding: 20px;
  background: #1b1f2a;
  border-radius: 10px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 5px;
  border: none;
  background: #3a3a4f;
  color: #fff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #bbb;
}

.contact-form button {
  background: #28a745;
  color: white;
  padding: 12px;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background .3s;
}

.contact-form button:hover {
  background: #35c154;
}

footer {
  margin: 40px 0;
  font-size: 0.9rem;
  color: #888;
  text-align: center;
}

footer a {
  color: #4a8af4;
  text-decoration: underline;
}

.logo-top-left {
  position: absolute;
  top: -20px;
  left: 20px;
  z-index: 10;
}
.logo-top-left img {
  max-height: 130px;
  filter: brightness(1.9) drop-shadow(0 0 6px rgba(0, 100, 0, 0.5));
}
@media(max-width:600px) {
  .pricing-cards, .benefits-grid, .testimonials-grid {
    flex-direction: column;
    display: flex;
    align-items: center;
  }
}
[data-aos] {
  opacity: 1 !important;
  transform: none !important;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 30px;
}

.main-nav a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

.lang-select {
  padding: 6px 12px;
  border-radius: 6px;
  background: #ffffff;
  color: #000000;
  border: 1px solid #ccc;
  font-weight: 500;
  cursor: pointer;
  font-size: 1rem;
}
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #28a745;
  color: #fff;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  font-weight: bold;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 9999;
}
.toast.show {
  opacity: 1;
  pointer-events: auto;
}
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  color: #fff;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  padding: 0.5rem 1rem;
}

.sticky-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sticky-header .logo {
  font-weight: bold;
  font-size: 1.4rem;
  color: #00b894;
  text-decoration: none;
}

.sticky-header .main-nav a {
  color: #000000;
  margin-right: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
.sticky-header .main-nav a:hover {
  color: #00b894;
}
body {
  padding-top: 50px;
}
.logo-img {
  height: 120px;
  display: block;
}
.clients-strip {
  padding: 60px 20px;
  background-color: #0A0A0A;
  color: white;
  text-align: center;
  overflow: hidden;
}

.clients-strip h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.logos-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.logos-track {
  display: flex;
  width: calc(200%); /* важливо! */
  animation: scroll-track 30s linear infinite;
}

.logos-track img {
  height: 50px;
  margin: 0 40px;
  object-fit: contain;
  opacity: 0.8;
  transition: transform 0.3s, opacity 0.3s;
}

.logos-track img:hover {
  transform: scale(1.1);
  opacity: 1;
}

@keyframes scroll-track {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
button[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}
#seo-text {
  padding: 60px 20px;
  background-color: #ffffff;
}

#seo-text > div {
  width: 100%;
  margin: 0;
  font-family: 'Segoe UI', Tahoma, sans-serif;
  line-height: 1.6;
  color: #000000; 
}

#seo-text h1 {
  font-size: 38px; 
  font-weight: 700;
  margin-bottom: 24px;
  color: #000000; 
}

#seo-text p {
  font-size: 19px; 
  margin-bottom: 18px;
  color: #000000;
}

#seo-text p:last-child {
  font-weight: 600;
  font-size: 22px; 
  margin-top: 28px;
  color: #000000;
}

#seo-text p:last-child span {
  color: #000000;
}

/* Легкий адаптив */
@media (max-width: 6000px) {
  #seo-text {
    padding: 40px 15px;
  }
  
  #seo-text h1 {
    font-size: 29px; 
  }
  
  #seo-text p {
    font-size: 17px; 
  }
}