/* ========================================
   Ecological Impact Section
   Ізольовані стилі з префіксом .eco-impact
   ======================================== */

.eco-impact {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.eco-impact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(87, 141, 172, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: eco-impact-float 20s ease-in-out infinite;
}

.eco-impact::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(69, 161, 72, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: eco-impact-float 25s ease-in-out infinite reverse;
}

@keyframes eco-impact-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, 30px) scale(1.1); }
}

.eco-impact__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 0;
}

/* Header */
.eco-impact__header {
    text-align: center;
    margin-bottom: 60px;
    animation: eco-impact-fadeInUp 0.8s ease;
}

@keyframes eco-impact-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.eco-impact__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #578dac 0%, #45A148 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(87, 141, 172, 0.3);
    animation: eco-impact-pulse 2s ease-in-out infinite;
}

@keyframes eco-impact-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 10px 40px rgba(87, 141, 172, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 15px 50px rgba(87, 141, 172, 0.4); }
}

.eco-impact__icon svg {
    width: 40px;
    height: 40px;
    color: #ffffff;
}

.eco-impact__title {
    font-family: "Mulish", sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #2c3e50;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.eco-impact__subtitle {
    font-family: "Mulish", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #666666;
    margin: 0;
    line-height: 1.6;
}

/* Grid */
.eco-impact__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Cards */
.eco-impact__card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 25px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: eco-impact-cardSlideIn 0.6s ease forwards;
}

.eco-impact__card:nth-child(1) { animation-delay: 0.1s; }
.eco-impact__card:nth-child(2) { animation-delay: 0.2s; }
.eco-impact__card:nth-child(3) { animation-delay: 0.3s; }
.eco-impact__card:nth-child(4) { animation-delay: 0.4s; }

@keyframes eco-impact-cardSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.eco-impact__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #578dac 0%, #45A148 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.eco-impact__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.eco-impact__card:hover::before {
    transform: scaleX(1);
}

.eco-impact__card-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.4s ease;
}

.eco-impact__card:hover .eco-impact__card-icon {
    transform: scale(1.1) rotate(5deg);
}

.eco-impact__card-icon--blue {
    background: linear-gradient(135deg, rgba(87, 141, 172, 0.15) 0%, rgba(87, 141, 172, 0.05) 100%);
}

.eco-impact__card-icon--green {
    background: linear-gradient(135deg, rgba(69, 161, 72, 0.15) 0%, rgba(69, 161, 72, 0.05) 100%);
}

.eco-impact__card-icon svg {
    width: 35px;
    height: 35px;
    color: #578dac;
}

.eco-impact__card-icon--green svg {
    color: #45A148;
}

.eco-impact__card-content {
    text-align: center;
}

.eco-impact__card-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 12px;
}

.eco-impact__number {
    font-family: "Mulish", sans-serif;
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #578dac 0%, #45A148 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.eco-impact__unit {
    font-family: "Mulish", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #999999;
}

.eco-impact__card-label {
    font-family: "Mulish", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #666666;
    line-height: 1.4;
}

/* ========================================
   Responsive
   ======================================== */

/* Tablet */
@media (max-width: 991px) {
    .eco-impact {
        padding: 60px 0;
    }

    .eco-impact__header {
        margin-bottom: 50px;
    }

    .eco-impact__icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .eco-impact__icon svg {
        width: 35px;
        height: 35px;
    }

    .eco-impact__title {
        font-size: 36px;
    }

    .eco-impact__subtitle {
        font-size: 16px;
    }

    .eco-impact__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .eco-impact__card {
        padding: 30px 20px;
    }

    .eco-impact__number {
        font-size: 42px;
    }

    .eco-impact__unit {
        font-size: 18px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .eco-impact {
        padding: 50px 0;
    }

    .eco-impact__container {
        padding: 0 15px;
    }

    .eco-impact__header {
        margin-bottom: 40px;
    }

    .eco-impact__icon {
        width: 60px;
        height: 60px;
        margin-bottom: 18px;
    }

    .eco-impact__icon svg {
        width: 30px;
        height: 30px;
    }

    .eco-impact__title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .eco-impact__subtitle {
        font-size: 15px;
    }

    .eco-impact__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .eco-impact__card {
        padding: 25px 15px;
        border-radius: 15px;
    }

    .eco-impact__card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .eco-impact__card-icon svg {
        width: 28px;
        height: 28px;
    }

    .eco-impact__number {
        font-size: 36px;
    }

    .eco-impact__unit {
        font-size: 15px;
    }

    .eco-impact__card-label {
        font-size: 13px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .eco-impact {
        padding: 40px 0;
    }

    .eco-impact__title {
        font-size: 24px;
    }

    .eco-impact__subtitle {
        font-size: 14px;
    }

    .eco-impact__grid {
        gap: 12px;
    }

    .eco-impact__card {
        padding: 20px 12px;
        border-radius: 12px;
    }

    .eco-impact__card-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 12px;
    }

    .eco-impact__card-icon svg {
        width: 24px;
        height: 24px;
    }

    .eco-impact__number {
        font-size: 32px;
    }

    .eco-impact__unit {
        font-size: 14px;
    }

    .eco-impact__card-label {
        font-size: 12px;
    }
}




/* ========================================
   Waste Search - Live Autocomplete
   ======================================== */

.waste-search {
    position: absolute;
    bottom: 120px; /* Було 60px - тепер вище */
    left: 0;
    right: 0;
    z-index: 1;
    padding: 0 20px;
}




/* Mobile - відносне позиціонування */
@media (max-width: 767px) {
    .waste-search {
        position: static; /* Прибираємо абсолютне позиціонування */
        padding: 30px 15px 0; /* Відступ зверху від тексту */
        margin-top: 30px; /* Або margin */
    }
}




.waste-search__wrapper {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.waste-search__icon {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: #578dac;
    font-size: 20px;
    z-index: 2;
    pointer-events: none;
}

.waste-search__input {
    width: 100%;
    padding: 20px 25px 20px 65px;
    font-family: "OpenSans-Regular", sans-serif;
    font-size: 16px;
    border: none;
    border-radius: 50px;
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    color: #2c3e50;
}

.waste-search__input:focus {
    outline: none;
    box-shadow: 0 15px 50px rgba(87, 141, 172, 0.4);
    transform: translateY(-2px);
}

.waste-search__input::placeholder {
    color: #999999;
}

.waste-search__results {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-height: 400px;
    overflow-y: auto;
    display: none;
    z-index: 1050;
}

.waste-search__results.active {
    display: block;
}

.waste-search__result-item {
    padding: 18px 25px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.waste-search__result-item:last-child {
    border-bottom: none;
}

.waste-search__result-item:hover {
    background: linear-gradient(90deg, rgba(87, 141, 172, 0.05) 0%, rgba(69, 161, 72, 0.05) 100%);
}

.waste-search__result-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(87, 141, 172, 0.1) 0%, rgba(69, 161, 72, 0.1) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #578dac;
    font-size: 18px;
}

.waste-search__result-content {
    flex: 1;
}

.waste-search__result-code {
    font-family: "OpenSans-Bold", sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #578dac;
    margin: 0 0 5px 0;
}

.waste-search__result-title {
    font-family: "OpenSans-Regular", sans-serif;
    font-size: 14px;
    color: #2c3e50;
    margin: 0;
    line-height: 1.4;
}

.waste-search__result-highlight {
    background: rgba(87, 141, 172, 0.2);
    font-weight: 600;
    padding: 0 2px;
    border-radius: 2px;
}

.waste-search__no-results {
    padding: 30px 25px;
    text-align: center;
    color: #999999;
    font-family: "OpenSans-Regular", sans-serif;
    font-size: 15px;
}

.waste-search__loading {
    padding: 30px 25px;
    text-align: center;
    color: #578dac;
    font-family: "OpenSans-Regular", sans-serif;
    font-size: 15px;
}

.waste-search__loading i {
    animation: spin 1s linear infinite;
    margin-right: 10px;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Scrollbar для результатів */
.waste-search__results::-webkit-scrollbar {
    width: 8px;
}

.waste-search__results::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.waste-search__results::-webkit-scrollbar-thumb {
    background: #578dac;
    border-radius: 10px;
}

.waste-search__results::-webkit-scrollbar-thumb:hover {
    background: #45A148;
}

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 991px) {
    .waste-search {
        bottom: 80px;
    }
    
    .waste-search__wrapper {
        max-width: 600px;
    }
    
    .waste-search__input {
        padding: 18px 20px 18px 60px;
        font-size: 15px;
    }
    
    .waste-search__icon {
        left: 20px;
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .waste-search {
        bottom: 50px;
        padding: 0 15px;
    }
    
    .waste-search__input {
        padding: 16px 18px 16px 55px;
        font-size: 14px;
        border-radius: 40px;
    }
    
    .waste-search__icon {
        left: 18px;
        font-size: 16px;
    }
    
    .waste-search__results {
        border-radius: 15px;
        max-height: 300px;
    }
    
    .waste-search__result-item {
        padding: 15px 18px;
        gap: 12px;
    }
    
    .waste-search__result-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .waste-search__result-code {
        font-size: 14px;
    }
    
    .waste-search__result-title {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .waste-search {
        bottom: 20px;
    }
    
    .waste-search__input {
        padding: 14px 16px 14px 50px;
        font-size: 13px;
    }
    
    .waste-search__results {
        max-height: 250px;
    }
}





/* ===================================
   Certificates Section - Isolated
   =================================== */

.certificates-modern-isolated {
  width: 100%;
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.certificates-modern-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.certificates-modern-header {
  text-align: center;
  margin-bottom: 70px;
  animation: fadeInDown 0.8s ease-out;
}

.certificates-modern-subtitle {
  font-family: "Mulish", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #45A148;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 15px;
}

.certificates-modern-title {
  font-family: "Mulish", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 25px 0;
  line-height: 1.2;
}

.certificates-modern-description {
  font-family: "Mulish", sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #666666;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto 25px;
}

.certificates-modern-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #578dac 0%, #45A148 100%);
  margin: 0 auto;
  border-radius: 2px;
}

/* Grid */
.certificates-modern-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Certificate Card */
.certificate-card-modern {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 20px;
  border: 2px solid #f0f0f0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.certificate-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #578dac 0%, #45A148 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.certificate-card-modern:hover {
  transform: translateY(-10px);
  border-color: rgba(87, 141, 172, 0.3);
  box-shadow: 0 20px 50px rgba(87, 141, 172, 0.2);
}

.certificate-card-modern:hover::before {
  transform: scaleX(1);
}

/* Icon */
.certificate-card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(87, 141, 172, 0.1) 0%, rgba(69, 161, 72, 0.1) 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.4s ease;
}

.certificate-card-modern:hover .certificate-card-icon {
  background: linear-gradient(135deg, rgba(87, 141, 172, 0.2) 0%, rgba(69, 161, 72, 0.2) 100%);
  transform: scale(1.1) rotate(5deg);
}

/* Title */
.certificate-card-title {
  font-family: "Mulish", sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 15px 0;
  line-height: 1.3;
}

/* Text */
.certificate-card-text {
  font-family: "Mulish", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  line-height: 1.6;
  margin: 0 0 auto 0;
  flex-grow: 1;
}

/* Badge */
.certificate-card-badge {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(87, 141, 172, 0.1) 0%, rgba(69, 161, 72, 0.1) 100%);
  color: #578dac;
  font-family: "Mulish", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 20px;
  margin-top: 20px;
  align-self: flex-start;
  transition: all 0.3s ease;
}

.certificate-card-modern:hover .certificate-card-badge {
  background: linear-gradient(135deg, #578dac 0%, #45A148 100%);
  color: #ffffff;
}

.certificate-card-badge-iso {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.15) 0%, rgba(255, 152, 0, 0.15) 100%);
  color: #f57c00;
}

.certificate-card-modern:hover .certificate-card-badge-iso {
  background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
  color: #ffffff;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large Desktop */
@media screen and (max-width: 1400px) {
  .certificates-modern-grid {
    gap: 25px;
  }
  
  .certificate-card-modern {
    padding: 30px 22px;
  }
}

/* Desktop */
@media screen and (max-width: 1200px) {
  .certificates-modern-isolated {
    padding: 90px 0;
  }
  
  .certificates-modern-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
}

/* Tablet Large */
@media screen and (max-width: 992px) {
  .certificates-modern-isolated {
    padding: 80px 0;
  }
  
  .certificates-modern-wrapper {
    padding: 0 25px;
  }
  
  .certificates-modern-header {
    margin-bottom: 60px;
  }
  
  .certificates-modern-title {
    font-size: 36px;
  }
  
  .certificates-modern-description {
    font-size: 16px;
  }
  
  .certificates-modern-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .certificate-card-modern {
    padding: 30px 25px;
  }
  
  .certificate-card-icon {
    width: 65px;
    height: 65px;
  }
  
  .certificate-card-icon svg {
    width: 36px;
    height: 36px;
  }
}

/* Tablet */
@media screen and (max-width: 768px) {
  .certificates-modern-isolated {
    padding: 60px 0;
  }
  
  .certificates-modern-wrapper {
    padding: 0 20px;
  }
  
  .certificates-modern-header {
    margin-bottom: 50px;
  }
  
  .certificates-modern-subtitle {
    font-size: 13px;
    letter-spacing: 1.5px;
  }
  
  .certificates-modern-title {
    font-size: 30px;
    margin-bottom: 20px;
  }
  
  .certificates-modern-description {
    font-size: 15px;
    line-height: 1.6;
  }
  
  .certificates-modern-divider {
    width: 60px;
    height: 3px;
  }
  
  .certificates-modern-grid {
    gap: 20px;
  }
  
  .certificate-card-modern {
    padding: 25px 20px;
  }
  
  .certificate-card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }
  
  .certificate-card-icon svg {
    width: 34px;
    height: 34px;
  }
  
  .certificate-card-title {
    font-size: 17px;
    margin-bottom: 12px;
  }
  
  .certificate-card-text {
    font-size: 13px;
    line-height: 1.5;
  }
  
  .certificate-card-badge {
    padding: 7px 14px;
    font-size: 11px;
    margin-top: 18px;
  }
}

/* Mobile Large */
@media screen and (max-width: 576px) {
  .certificates-modern-isolated {
    padding: 50px 0;
  }
  
  .certificates-modern-wrapper {
    padding: 0 15px;
  }
  
  .certificates-modern-header {
    margin-bottom: 40px;
  }
  
  .certificates-modern-title {
    font-size: 26px;
    margin-bottom: 18px;
  }
  
  .certificates-modern-description {
    font-size: 14px;
  }
  
  .certificates-modern-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  
  .certificate-card-modern {
    padding: 25px 20px;
  }
  
  .certificate-card-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 18px;
  }
  
  .certificate-card-icon svg {
    width: 32px;
    height: 32px;
  }
  
  .certificate-card-title {
    font-size: 18px;
  }
  
  .certificate-card-text {
    font-size: 14px;
  }
}

/* Mobile */
@media screen and (max-width: 480px) {
  .certificates-modern-title {
    font-size: 24px;
  }
  
  .certificate-card-modern {
    padding: 20px 18px;
  }
  
  .certificate-card-icon {
    width: 50px;
    height: 50px;
  }
  
  .certificate-card-icon svg {
    width: 30px;
    height: 30px;
  }
  
  .certificate-card-title {
    font-size: 17px;
  }
  
  .certificate-card-text {
    font-size: 13px;
  }
}

/* Small Mobile */
@media screen and (max-width: 400px) {
  .certificates-modern-isolated {
    padding: 40px 0;
  }
  
  .certificates-modern-title {
    font-size: 22px;
  }
  
  .certificate-card-modern {
    padding: 18px 15px;
  }
  
  .certificate-card-title {
    font-size: 16px;
  }
  
  .certificate-card-text {
    font-size: 12px;
  }
  
  .certificate-card-badge {
    padding: 6px 12px;
    font-size: 10px;
  }
}

/* Landscape Mobile */
@media screen and (max-width: 768px) and (orientation: landscape) {
  .certificates-modern-isolated {
    padding: 50px 0;
  }
  
  .certificates-modern-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .certificate-card-modern {
    padding: 20px 18px;
  }
}













/* ===================================
   Advantages Section - Isolated
   =================================== */

.advantages-modern-isolated {
  width: 100%;
  padding: 100px 0;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  position: relative;
  overflow: hidden;
}

.advantages-modern-isolated::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(87, 141, 172, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(69, 161, 72, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.advantages-modern-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.advantages-modern-header {
  text-align: center;
  margin-bottom: 70px;
  animation: fadeInDown 0.8s ease-out;
}

.advantages-modern-subtitle {
  font-family: "Mulish", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #45A148;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 15px;
}

.advantages-modern-title {
  font-family: "Mulish", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 25px 0;
  line-height: 1.2;
}

.advantages-modern-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #578dac 0%, #45A148 100%);
  margin: 0 auto;
  border-radius: 2px;
}

.advantages-modern-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.advantage-card-modern {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.advantage-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #578dac 0%, #45A148 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.advantage-card-modern:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(87, 141, 172, 0.3);
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.advantage-card-modern:hover::before {
  transform: scaleX(1);
}

.advantage-card-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: "Mulish", sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  transition: all 0.4s ease;
}

.advantage-card-modern:hover .advantage-card-number {
  color: rgba(255, 255, 255, 0.1);
  transform: scale(1.1);
}

.advantage-card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(87, 141, 172, 0.2) 0%, rgba(69, 161, 72, 0.2) 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: #45A148;
  transition: all 0.4s ease;
}

.advantage-card-modern:hover .advantage-card-icon {
  background: linear-gradient(135deg, #578dac 0%, #45A148 100%);
  color: #ffffff;
  transform: scale(1.1) rotate(-5deg);
}

.advantage-card-title {
  font-family: "Mulish", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 15px 0;
  line-height: 1.3;
}

.advantage-card-text {
  font-family: "Mulish", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

@media screen and (max-width: 1200px) {
  .advantages-modern-isolated { padding: 90px 0; }
  .advantages-modern-grid { gap: 25px; }
  .advantage-card-modern { padding: 35px 25px; }
  .advantage-card-icon { width: 65px; height: 65px; }
  .advantage-card-icon svg { width: 32px; height: 32px; }
}

@media screen and (max-width: 992px) {
  .advantages-modern-isolated { padding: 80px 0; }
  .advantages-modern-wrapper { padding: 0 25px; }
  .advantages-modern-header { margin-bottom: 60px; }
  .advantages-modern-title { font-size: 36px; }
  .advantages-modern-grid { grid-template-columns: repeat(2, 1fr); }
  .advantage-card-number { font-size: 42px; }
}

@media screen and (max-width: 768px) {
  .advantages-modern-isolated { padding: 60px 0; }
  .advantages-modern-wrapper { padding: 0 20px; }
  .advantages-modern-header { margin-bottom: 50px; }
  .advantages-modern-subtitle { font-size: 13px; letter-spacing: 1.5px; }
  .advantages-modern-title { font-size: 30px; margin-bottom: 20px; }
  .advantages-modern-divider { width: 60px; height: 3px; }
  .advantages-modern-grid { gap: 20px; }
  .advantage-card-modern { padding: 30px 25px; }
  .advantage-card-number { font-size: 38px; top: 18px; right: 18px; }
  .advantage-card-icon { width: 60px; height: 60px; margin-bottom: 20px; }
  .advantage-card-icon svg { width: 30px; height: 30px; }
  .advantage-card-title { font-size: 18px; margin-bottom: 12px; }
  .advantage-card-text { font-size: 14px; line-height: 1.5; }
}

@media screen and (max-width: 576px) {
  .advantages-modern-isolated { padding: 50px 0; }
  .advantages-modern-wrapper { padding: 0 15px; }
  .advantages-modern-header { margin-bottom: 40px; }
  .advantages-modern-title { font-size: 26px; margin-bottom: 18px; }
  .advantages-modern-grid { grid-template-columns: 1fr; gap: 18px; }
  .advantage-card-modern { padding: 30px 20px; }
  .advantage-card-number { font-size: 36px; }
  .advantage-card-icon { width: 55px; height: 55px; }
  .advantage-card-icon svg { width: 28px; height: 28px; }
}

@media screen and (max-width: 480px) {
  .advantages-modern-title { font-size: 24px; }
  .advantage-card-modern { padding: 25px 18px; }
  .advantage-card-number { font-size: 32px; }
  .advantage-card-icon { width: 50px; height: 50px; }
  .advantage-card-icon svg { width: 26px; height: 26px; }
  .advantage-card-title { font-size: 17px; }
  .advantage-card-text { font-size: 13px; }
}

@media screen and (max-width: 400px) {
  .advantages-modern-title { font-size: 22px; }
  .advantage-card-modern { padding: 20px 15px; }
  .advantage-card-title { font-size: 16px; }
  .advantage-card-text { font-size: 12px; }
}

@media screen and (max-width: 768px) and (orientation: landscape) {
  .advantages-modern-isolated { padding: 50px 0; }
  .advantages-modern-grid { grid-template-columns: repeat(2, 1fr); }
  .advantage-card-modern { padding: 25px 20px; }
}















.work-process-v2 {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.work-process-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: radial-gradient(ellipse at top, rgba(87, 141, 172, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.work-process-v2__title {
    font-family: "OpenSans-Bold", sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin: 0 0 15px 0;
    position: relative;
    z-index: 1;
}

.work-process-v2__subtitle {
    font-family: "OpenSans-Regular", sans-serif;
    font-size: 18px;
    color: #666666;
    text-align: center;
    margin: 0 0 60px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.work-process-v2__timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.work-process-v2__line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, rgba(87, 141, 172, 0.2) 0%, rgba(69, 161, 72, 0.4) 50%, rgba(87, 141, 172, 0.2) 100%);
    transform: translateX(-50%);
    z-index: 0;
}

.work-process-v2__item {
    position: relative;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.work-process-v2__item:nth-child(1) { animation-delay: 0.1s; }
.work-process-v2__item:nth-child(2) { animation-delay: 0.2s; }
.work-process-v2__item:nth-child(3) { animation-delay: 0.3s; }
.work-process-v2__item:nth-child(4) { animation-delay: 0.4s; }
.work-process-v2__item:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.work-process-v2__content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

/* Непарні (1, 3, 5) - ЗЛІВА */
.work-process-v2__item:nth-child(odd) .work-process-v2__content {
    justify-content: flex-start;
}

.work-process-v2__item:nth-child(odd) .work-process-v2__card {
    margin-right: auto;
    margin-left: 0;
}

/* Парні (2, 4) - СПРАВА */
.work-process-v2__item:nth-child(even) .work-process-v2__content {
    justify-content: flex-end;
}

.work-process-v2__item:nth-child(even) .work-process-v2__card {
    margin-left: auto;
    margin-right: 0;
}

.work-process-v2__number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #578dac 0%, #45A148 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(87, 141, 172, 0.3);
    z-index: 2;
    transition: all 0.3s ease;
}

.work-process-v2__number span {
    font-family: "OpenSans-Bold", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.work-process-v2__item:hover .work-process-v2__number {
    transform: translateX(-50%) scale(1.15);
    box-shadow: 0 8px 30px rgba(69, 161, 72, 0.5);
}

.work-process-v2__card {
    width: calc(50% - 50px);
    max-width: 450px;
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(87, 141, 172, 0.1);
}

.work-process-v2__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #578dac 0%, #45A148 100%);
    border-radius: 20px 20px 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.work-process-v2__item:hover .work-process-v2__card::before {
    transform: scaleX(1);
}

.work-process-v2__item:hover .work-process-v2__card {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(87, 141, 172, 0.15);
}

.work-process-v2__icon {
    width: 80px;
    height: 80px;
    margin: 0 0 20px 0;
    padding: 15px;
    background: linear-gradient(135deg, rgba(87, 141, 172, 0.1) 0%, rgba(69, 161, 72, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.work-process-v2__item:hover .work-process-v2__icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(87, 141, 172, 0.15) 0%, rgba(69, 161, 72, 0.15) 100%);
}

.work-process-v2__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.work-process-v2__card-title {
    font-family: "OpenSans-SemiBold", sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.work-process-v2__card-text {
    font-family: "OpenSans-Regular", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
    margin: 0;
}

@media (max-width: 991px) {
    .work-process-v2 { padding: 60px 0 80px; }
    .work-process-v2__title { font-size: 36px; }
    .work-process-v2__subtitle { font-size: 16px; margin-bottom: 40px; }
    .work-process-v2__card { width: calc(50% - 40px); padding: 30px 25px; }
    .work-process-v2__number { width: 60px; height: 60px; }
    .work-process-v2__number span { font-size: 20px; }
    .work-process-v2__card-title { font-size: 20px; }
    .work-process-v2__card-text { font-size: 15px; }
    .work-process-v2__icon { width: 70px; height: 70px; margin-bottom: 15px; }
}

@media (max-width: 767px) {
    .work-process-v2 { padding: 50px 0 60px; }
    .work-process-v2__title { font-size: 28px; margin-bottom: 10px; }
    .work-process-v2__subtitle { font-size: 15px; margin-bottom: 30px; padding: 0 20px; }
    .work-process-v2__timeline { padding: 20px 15px; }
    .work-process-v2__line { left: 35px; }
    .work-process-v2__item { margin-bottom: 50px; }
    
    .work-process-v2__content {
        display: block;
        padding-left: 85px;
    }
    
    .work-process-v2__item:nth-child(odd) .work-process-v2__content,
    .work-process-v2__item:nth-child(even) .work-process-v2__content {
        justify-content: flex-start;
    }
    
    .work-process-v2__item:nth-child(odd) .work-process-v2__card,
    .work-process-v2__item:nth-child(even) .work-process-v2__card {
        margin: 0;
    }
    
    .work-process-v2__number {
        left: 0;
        transform: translateX(0);
        width: 70px;
        height: 70px;
        position: absolute;
        top: 0;
    }
    .work-process-v2__number span { font-size: 22px; }
    .work-process-v2__item:hover .work-process-v2__number { transform: translateX(0) scale(1.1); }
    .work-process-v2__card { width: 100%; padding: 25px 20px; border-radius: 16px; }
    .work-process-v2__icon { width: 60px; height: 60px; padding: 12px; margin-bottom: 12px; }
    .work-process-v2__card-title { font-size: 18px; margin-bottom: 10px; }
    .work-process-v2__card-text { font-size: 14px; line-height: 1.5; }
}

@media (max-width: 480px) {
    .work-process-v2__title { font-size: 24px; }
    .work-process-v2__subtitle { font-size: 14px; }
    .work-process-v2__content { padding-left: 75px; }
    .work-process-v2__number { width: 60px; height: 60px; }
    .work-process-v2__number span { font-size: 20px; }
    .work-process-v2__card { padding: 20px 18px; }
    .work-process-v2__card-title { font-size: 17px; }
    .work-process-v2__card-text { font-size: 13px; }
}


.work-process-v2__icon i {
    font-size: 40px;
    background: linear-gradient(135deg, #578dac 0%, #45A148 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}












/* ===================================
   Stats Section - Isolated Styles
   =================================== */




/* Заголовок секції статистики */
.stats-section-isolated__header {
    text-align: center;
    margin-bottom: 60px;
    animation: stats-fadeInUp 0.8s ease;
}

@keyframes stats-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stats-section-isolated__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #578dac 0%, #45A148 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(87, 141, 172, 0.3);
}

.stats-section-isolated__icon svg {
    width: 35px;
    height: 35px;
    color: #ffffff;
}

.stats-section-isolated__title {
    font-family: "Mulish", sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #2c3e50;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.stats-section-isolated__subtitle {
    font-family: "Mulish", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #666666;
    margin: 0;
    line-height: 1.6;
}

/* Responsive для заголовка */
@media (max-width: 991px) {
    .stats-section-isolated__header {
        margin-bottom: 50px;
    }

    .stats-section-isolated__icon {
        width: 65px;
        height: 65px;
        margin-bottom: 20px;
    }

    .stats-section-isolated__icon svg {
        width: 32px;
        height: 32px;
    }

    .stats-section-isolated__title {
        font-size: 36px;
    }

    .stats-section-isolated__subtitle {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .stats-section-isolated__header {
        margin-bottom: 40px;
    }

    .stats-section-isolated__icon {
        width: 60px;
        height: 60px;
        margin-bottom: 18px;
    }

    .stats-section-isolated__icon svg {
        width: 30px;
        height: 30px;
    }

    .stats-section-isolated__title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .stats-section-isolated__subtitle {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .stats-section-isolated__title {
        font-size: 24px;
    }

    .stats-section-isolated__subtitle {
        font-size: 14px;
    }
}






#statsSection.stats-section-isolated {
  width: 100%;
  padding: 80px 0;
  /*background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);*/
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}



.stats-wrapper-isolated {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.stats-grid-isolated {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  align-items: stretch;
}

.stat-card-isolated {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(87, 141, 172, 0.12);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(87, 141, 172, 0.1);
}

.stat-card-isolated::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #578dac 0%, #45A148 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.stat-card-isolated:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(87, 141, 172, 0.25);
}

.stat-card-isolated:hover::before {
  transform: scaleX(1);
}

.stat-icon-isolated {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, rgba(87, 141, 172, 0.1) 0%, rgba(69, 161, 72, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.stat-card-isolated:hover .stat-icon-isolated {
  transform: rotate(360deg) scale(1.1);
  background: linear-gradient(135deg, rgba(87, 141, 172, 0.2) 0%, rgba(69, 161, 72, 0.2) 100%);
}

.stat-number-isolated {
  font-family: "Mulish", sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: #578dac;
  line-height: 1;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #578dac 0%, #45A148 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label-isolated {
  font-family: "Mulish", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #666666;
  text-transform: none;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

/* Tablet view (2x2 grid) */
@media screen and (max-width: 992px) {
  #statsSection.stats-section-isolated {
    padding: 60px 0;
  }
  
  .stats-grid-isolated {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .stat-card-isolated {
    padding: 35px 25px;
  }
  
  .stat-number-isolated {
    font-size: 46px;
  }
  
  .stat-label-isolated {
    font-size: 14px;
  }
}

/* Mobile view (2x2 grid, smaller) */
@media screen and (max-width: 768px) {
  #statsSection.stats-section-isolated {
    padding: 50px 0;
  }
  
  .stats-wrapper-isolated {
    padding: 0 15px;
  }
  
  .stats-grid-isolated {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .stat-card-isolated {
    padding: 25px 15px;
    border-radius: 15px;
  }
  
  .stat-icon-isolated {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }
  
  .stat-icon-isolated svg {
    width: 32px;
    height: 32px;
  }
  
  .stat-number-isolated {
    font-size: 36px;
    margin-bottom: 10px;
  }
  
  .stat-label-isolated {
    font-size: 12px;
    letter-spacing: 0.3px;
  }
}

/* Small mobile */
@media screen and (max-width: 480px) {
  #statsSection.stats-section-isolated {
    padding: 40px 0;
  }
  
  .stat-card-isolated {
    padding: 20px 12px;
    border-radius: 12px;
  }
  
  .stat-number-isolated {
    font-size: 32px;
  }
  
  .stat-label-isolated {
    font-size: 11px;
  }
}






/* ===================================
   About Section Modern - Isolated
   =================================== */

.about-modern-isolated {
  width: 100%;
  padding: 100px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.about-modern-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.about-modern-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInDown 0.8s ease-out;
}

.about-modern-subtitle {
  font-family: "Mulish", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #45A148;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 15px;
}

.about-modern-title {
  font-family: "Mulish", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.about-modern-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #578dac 0%, #45A148 100%);
  margin: 0 auto;
  border-radius: 2px;
}

/* Grid Layout */
.about-modern-grid {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 60px;
  align-items: center;
}

/* Image Section */
.about-modern-image-wrapper {
  animation: fadeInLeft 0.8s ease-out 0.2s;
  animation-fill-mode: both;
}

.about-modern-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(87, 141, 172, 0.2);
}

.about-modern-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.about-modern-image-container:hover .about-modern-image {
  transform: scale(1.05);
}

.about-modern-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(87, 141, 172, 0.1) 0%, rgba(69, 161, 72, 0.1) 100%);
  pointer-events: none;
}

/* Badge */
.about-modern-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #578dac 0%, #45A148 100%);
  padding: 20px 25px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  text-align: center;
  animation: pulse 2s ease-in-out infinite;
}

.about-modern-badge-number {
  font-family: "Mulish", sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 5px;
}

.about-modern-badge-text {
  font-family: "Mulish", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Content Section */
.about-modern-content {
  animation: fadeInRight 0.8s ease-out 0.4s;
  animation-fill-mode: both;
}

/* Feature Cards */
.about-modern-feature {
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
  padding: 25px;
  background: #ffffff;
  border-radius: 15px;
  border: 1px solid #f0f0f0;
  transition: all 0.4s ease;
}

.about-modern-feature:hover {
  background: linear-gradient(135deg, rgba(87, 141, 172, 0.03) 0%, rgba(69, 161, 72, 0.03) 100%);
  border-color: rgba(87, 141, 172, 0.2);
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(87, 141, 172, 0.12);
}

.about-modern-feature-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(87, 141, 172, 0.1) 0%, rgba(69, 161, 72, 0.1) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.about-modern-feature:hover .about-modern-feature-icon {
  transform: rotate(360deg);
  background: linear-gradient(135deg, rgba(87, 141, 172, 0.2) 0%, rgba(69, 161, 72, 0.2) 100%);
}

.about-modern-feature-content {
  flex: 1;
}

.about-modern-feature-title {
 font-family: "Mulish", sans-serif;}
 
 
 
 /* CTA Button - Styled */
.about-modern-cta {
  margin-top: 40px;
}

.about-modern-button-styled {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 20px 45px;
  background: linear-gradient(135deg, #578dac 0%, #45A148 100%);
  color: #ffffff;
  font-family: "Mulish", sans-serif;
  font-size: 17px;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(87, 141, 172, 0.35);
  position: relative;
  overflow: hidden;
}

.about-modern-button-styled::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.about-modern-button-styled:hover::before {
  left: 100%;
}

.about-modern-button-styled:hover {
  background: linear-gradient(135deg, #45A148 0%, #578dac 100%);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(69, 161, 72, 0.45);
}

.about-modern-button-styled:active {
  transform: translateY(-2px);
}

.about-modern-button-icon,
.about-modern-button-arrow {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.about-modern-button-styled:hover .about-modern-button-arrow {
  transform: translateX(5px);
}

.about-modern-button-styled:hover .about-modern-button-icon {
  transform: scale(1.1);
}

.about-modern-button-text {
  white-space: nowrap;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== TABLET ADAPTATION ===== */
@media screen and (max-width: 1200px) {
  .about-modern-isolated {
    padding: 90px 0;
  }
  
  .about-modern-wrapper {
    padding: 0 25px;
  }
  
  .about-modern-grid {
    gap: 50px;
  }
  
  .about-modern-feature {
    padding: 22px;
  }
}

@media screen and (max-width: 992px) {
  .about-modern-isolated {
    padding: 80px 0;
  }
  
  .about-modern-title {
    font-size: 36px;
  }
  
  .about-modern-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .about-modern-image-wrapper {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .about-modern-badge {
    bottom: 25px;
    right: 25px;
    padding: 18px 22px;
  }
  
  .about-modern-badge-number {
    font-size: 32px;
  }
  
  .about-modern-badge-text {
    font-size: 11px;
  }
  
  .about-modern-feature {
    padding: 20px;
    gap: 18px;
  }
  
  .about-modern-feature-icon {
    width: 55px;
    height: 55px;
  }
  
  .about-modern-feature-icon svg {
    width: 30px;
    height: 30px;
  }
  
  .about-modern-button-styled {
    padding: 18px 40px;
    font-size: 16px;
  }
}

/* ===== MOBILE ADAPTATION ===== */
@media screen and (max-width: 768px) {
  .about-modern-isolated {
    padding: 60px 0;
  }
  
  .about-modern-wrapper {
    padding: 0 20px;
  }
  
  .about-modern-header {
    margin-bottom: 40px;
  }
  
  .about-modern-subtitle {
    font-size: 13px;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
  }
  
  .about-modern-title {
    font-size: 30px;
    margin-bottom: 18px;
  }
  
  .about-modern-divider {
    width: 60px;
    height: 3px;
  }
  
  .about-modern-grid {
    gap: 40px;
  }
  
  .about-modern-image-container {
    border-radius: 15px;
  }
  
  .about-modern-badge {
    bottom: 20px;
    right: 20px;
    padding: 15px 20px;
  }
  
  .about-modern-badge-number {
    font-size: 28px;
    margin-bottom: 4px;
  }
  
  .about-modern-badge-text {
    font-size: 10px;
    letter-spacing: 0.5px;
  }
  
  .about-modern-feature {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    margin-bottom: 25px;
  }
  
  .about-modern-feature:hover {
    transform: translateY(-5px);
  }
  
  .about-modern-feature-icon {
    width: 50px;
    height: 50px;
  }
  
  .about-modern-feature-icon svg {
    width: 28px;
    height: 28px;
  }
  
  .about-modern-feature-title {
    font-size: 18px;
    margin-bottom: 8px;
  }
  
  .about-modern-feature-text {
    font-size: 14px;
    line-height: 1.5;
  }
  
  .about-modern-cta {
    margin-top: 35px;
  }
  
  .about-modern-button-styled {
    width: 100%;
    justify-content: center;
    padding: 18px 35px;
    font-size: 16px;
    gap: 12px;
  }
}

/* ===== SMALL MOBILE ADAPTATION ===== */
@media screen and (max-width: 576px) {
  .about-modern-isolated {
    padding: 50px 0;
  }
  
  .about-modern-wrapper {
    padding: 0 15px;
  }
  
  .about-modern-header {
    margin-bottom: 35px;
  }
  
  .about-modern-title {
    font-size: 26px;
    line-height: 1.3;
  }
  
  .about-modern-grid {
    gap: 35px;
  }
  
  .about-modern-badge {
    bottom: 15px;
    right: 15px;
    padding: 12px 16px;
  }
  
  .about-modern-badge-number {
    font-size: 24px;
  }
  
  .about-modern-badge-text {
    font-size: 9px;
  }
  
  .about-modern-feature {
    padding: 18px 15px;
    margin-bottom: 20px;
  }
  
  .about-modern-feature-icon {
    width: 45px;
    height: 45px;
  }
  
  .about-modern-feature-icon svg {
    width: 26px;
    height: 26px;
  }
  
  .about-modern-feature-title {
    font-size: 17px;
  }
  
  .about-modern-feature-text {
    font-size: 13px;
  }
  
  .about-modern-button-styled {
    padding: 16px 30px;
    font-size: 15px;
    gap: 10px;
  }
  
  .about-modern-button-icon svg,
  .about-modern-button-arrow svg {
    width: 18px;
    height: 18px;
  }
}

/* ===== EXTRA SMALL MOBILE ===== */
@media screen and (max-width: 400px) {
  .about-modern-title {
    font-size: 24px;
  }
  
  .about-modern-feature {
    padding: 15px 12px;
  }
  
  .about-modern-feature-title {
    font-size: 16px;
  }
  
  .about-modern-feature-text {
    font-size: 12px;
  }
  
  .about-modern-button-styled {
    padding: 15px 25px;
    font-size: 14px;
  }
}

/* ===== LANDSCAPE MOBILE FIX ===== */
@media screen and (max-width: 768px) and (orientation: landscape) {
  .about-modern-isolated {
    padding: 50px 0;
  }
  
  .about-modern-badge {
    padding: 10px 15px;
  }
  
  .about-modern-badge-number {
    font-size: 22px;
  }
  
  .about-modern-feature {
    flex-direction: row;
    gap: 15px;
  }
}
 
 
 /* About Contact Modal Styles */
#aboutContactModalContent {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

#aboutContactModalHeader {
  background: linear-gradient(135deg, #578dac 0%, #45A148 100%);
  color: #ffffff;
  padding: 30px;
  border: none;
}

#aboutContactModalLabel {
  font-family: "Mulish", sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 8px 0;
}

.about-contact-modal-subtitle {
  font-family: "Mulish", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

#aboutContactModalBody {
  padding: 30px;
  background: #ffffff;
}

#aboutContactForm .form-label {
  font-family: "Mulish", sans-serif;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
  font-size: 14px;
}

#aboutContactForm .form-control,
#aboutContactForm textarea.form-control {
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 15px;
  font-family: "Mulish", sans-serif;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#aboutContactForm .form-control:focus,
#aboutContactForm textarea.form-control:focus {
  border-color: #578dac;
  box-shadow: 0 0 0 0.2rem rgba(87, 141, 172, 0.25);
  outline: none;
}

#aboutContactForm textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

#aboutContactSubmitBtn {
  background: linear-gradient(135deg, #578dac 0%, #45A148 100%);
  color: #ffffff;
  border: none;
  padding: 16px 30px;
  font-size: 16px;
  font-weight: 700;
  font-family: "Mulish", sans-serif;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

#aboutContactSubmitBtn:hover {
  background: linear-gradient(135deg, #45A148 0%, #578dac 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(69, 161, 72, 0.4);
}

#aboutContactSubmitBtn:active {
  transform: translateY(0);
}

#aboutContactSuccess {
  border-radius: 10px;
  border: 1px solid #28a745;
  background-color: #d4edda;
  color: #155724;
  font-family: "Mulish", sans-serif;
}

#aboutContactError {
  border-radius: 10px;
  border: 1px solid #dc3545;
  background-color: #f8d7da;
  color: #721c24;
  font-family: "Mulish", sans-serif;
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
  #aboutContactModalHeader {
    padding: 25px 20px;
  }
  
  #aboutContactModalLabel {
    font-size: 20px;
  }
  
  #aboutContactModalBody {
    padding: 25px 20px;
  }
  
  #aboutContactForm .row > div {
    margin-bottom: 15px !important;
  }
}








/* ========================================
   SEO Content Section
   Повністю ізольовані стилі з префіксом .seo-content
   ======================================== */

.seo-content {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.seo-content::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(69, 161, 72, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.seo-content__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* ========================================
   Header
   ======================================== */

.seo-content__header {
    text-align: center;
    margin-bottom: 60px;
    animation: seo-fadeInUp 0.8s ease;
}

@keyframes seo-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.seo-content__badge {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(87, 141, 172, 0.1) 0%, rgba(69, 161, 72, 0.1) 100%);
    color: #578dac;
    font-family: "Mulish", sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.seo-content__title {
    font-family: "Mulish", sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #2c3e50;
    margin: 0;
    line-height: 1.3;
    max-width: 900px;
    margin: 0 auto;
}

/* ========================================
   Grid Layout
   ======================================== */

.seo-content__grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
    align-items: start;
}

/* ========================================
   Main Content
   ======================================== */

.seo-content__main {
    animation: seo-slideIn 0.8s ease 0.2s both;
}

@keyframes seo-slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Intro Block */
.seo-content__intro {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-left: 4px solid #578dac;
    border-radius: 0 12px 12px 0;
    padding: 30px;
    margin-bottom: 35px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.seo-content__intro-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #578dac 0%, #45A148 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(87, 141, 172, 0.3);
}

.seo-content__intro-icon svg {
    width: 26px;
    height: 26px;
    color: #ffffff;
}

.seo-content__intro p {
    font-family: "Mulish", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #2c3e50;
    line-height: 1.8;
    margin: 0;
}

.seo-content__intro strong {
    font-weight: 700;
    color: #578dac;
}

/* Subtitles */
.seo-content__subtitle {
    font-family: "Mulish", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin: 40px 0 20px 0;
    line-height: 1.3;
    position: relative;
    padding-left: 20px;
}

.seo-content__subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 30px;
    background: linear-gradient(180deg, #578dac 0%, #45A148 100%);
    border-radius: 3px;
}

/* Text Paragraphs */
.seo-content__text {
    font-family: "Mulish", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #555555;
    line-height: 1.8;
    margin: 0 0 25px 0;
}

.seo-content__text strong {
    font-weight: 700;
    color: #2c3e50;
}

.seo-content__text--final {
    margin-bottom: 0;
}

/* ========================================
   Lists
   ======================================== */

.seo-content__list-block {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 30px;
    margin: 30px 0;
}

.seo-content__list-title {
    font-family: "Mulish", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 20px 0;
}

/* Numbered List */
.seo-content__numbered-list {
    list-style: none;
    counter-reset: item;
    padding: 0;
    margin: 0;
}

.seo-content__numbered-list li {
    counter-increment: item;
    position: relative;
    padding-left: 50px;
    margin-bottom: 20px;
    font-family: "Mulish", sans-serif;
    font-size: 15px;
    color: #555555;
    line-height: 1.6;
}

.seo-content__numbered-list li:last-child {
    margin-bottom: 0;
}

.seo-content__numbered-list li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #578dac 0%, #45A148 100%);
    color: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Mulish", sans-serif;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(87, 141, 172, 0.3);
}

.seo-content__numbered-list li strong {
    display: block;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.seo-content__numbered-list li span {
    display: block;
}

/* Bullet List */
.seo-content__bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.seo-content__bullet-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-family: "Mulish", sans-serif;
    font-size: 15px;
    color: #555555;
    line-height: 1.6;
}

.seo-content__bullet-list li:last-child {
    margin-bottom: 0;
}

.seo-content__bullet-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, rgba(87, 141, 172, 0.2) 0%, rgba(69, 161, 72, 0.2) 100%);
    border-radius: 5px;
}

.seo-content__bullet-list li::after {
    content: '✓';
    position: absolute;
    left: 5px;
    top: 8px;
    color: #578dac;
    font-size: 14px;
    font-weight: 700;
}

/* ========================================
   Sidebar
   ======================================== */

.seo-content__sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    animation: seo-slideIn 0.8s ease 0.4s both;
}

/* Stats Card */
.seo-content__stats-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.seo-content__stats-card:hover {
    border-color: #578dac;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.seo-content__stats-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #578dac 0%, #45A148 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.seo-content__stats-icon svg {
    width: 30px;
    height: 30px;
    color: #ffffff;
}

.seo-content__stats-content {
    flex: 1;
}

.seo-content__stats-title {
    font-family: "Mulish", sans-serif;
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #578dac 0%, #45A148 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.seo-content__stats-desc {
    font-family: "Mulish", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #666666;
    line-height: 1.4;
}

/* CTA Card */
.seo-content__cta-card {
    background: linear-gradient(135deg, #578dac 0%, #45A148 100%);
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(87, 141, 172, 0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.seo-content__cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.seo-content__cta-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.seo-content__cta-icon svg {
    width: 28px;
    height: 28px;
    color: #ffffff;
}

.seo-content__cta-title {
    font-family: "Mulish", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
}

.seo-content__cta-text {
    font-family: "Mulish", sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin: 0 0 25px 0;
}

.seo-content__cta-button {
    display: inline-block;
    padding: 14px 30px;
    background: #ffffff;
    color: #578dac;
    font-family: "Mulish", sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.seo-content__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
}

/* License Card */
.seo-content__license-card {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: all 0.3s ease;
}

.seo-content__license-card:hover {
    border-color: #45A148;
    box-shadow: 0 5px 20px rgba(69, 161, 72, 0.15);
}

.seo-content__license-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(69, 161, 72, 0.15) 0%, rgba(69, 161, 72, 0.05) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.seo-content__license-icon svg {
    width: 26px;
    height: 26px;
    color: #45A148;
}

.seo-content__license-content {
    flex: 1;
}

.seo-content__license-title {
    font-family: "Mulish", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.seo-content__license-desc {
    font-family: "Mulish", sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #666666;
    line-height: 1.4;
}

/* ========================================
   Responsive
   ======================================== */

/* Tablet */
@media (max-width: 991px) {
    .seo-content {
        padding: 60px 0;
    }

    .seo-content__header {
        margin-bottom: 50px;
    }

    .seo-content__badge {
        font-size: 13px;
        padding: 8px 20px;
    }

    .seo-content__title {
        font-size: 36px;
    }

    .seo-content__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .seo-content__sidebar {
        position: static;
        grid-template-columns: repeat(2, 1fr);
        display: grid;
    }

    .seo-content__cta-card {
        grid-column: 1 / -1;
    }

    .seo-content__subtitle {
        font-size: 24px;
    }

    .seo-content__intro {
        padding: 25px;
        gap: 18px;
    }

    .seo-content__intro-icon {
        width: 45px;
        height: 45px;
    }

    .seo-content__intro-icon svg {
        width: 24px;
        height: 24px;
    }

    .seo-content__list-block {
        padding: 25px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .seo-content {
        padding: 50px 0;
    }

    .seo-content__container {
        padding: 0 15px;
    }

    .seo-content__header {
        margin-bottom: 40px;
    }

    .seo-content__badge {
        font-size: 12px;
        padding: 7px 18px;
        margin-bottom: 15px;
    }

    .seo-content__title {
        font-size: 28px;
    }

    .seo-content__grid {
        gap: 35px;
    }

    .seo-content__sidebar {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .seo-content__subtitle {
        font-size: 22px;
        margin: 35px 0 18px 0;
        padding-left: 18px;
    }

    .seo-content__subtitle::before {
        width: 4px;
        height: 25px;
    }

    .seo-content__text {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .seo-content__intro {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    .seo-content__intro-icon {
        width: 40px;
        height: 40px;
    }

    .seo-content__intro-icon svg {
        width: 22px;
        height: 22px;
    }

    .seo-content__intro p {
        font-size: 15px;
    }

    .seo-content__list-block {
        padding: 20px;
        margin: 25px 0;
    }

    .seo-content__list-title {
        font-size: 18px;
        margin-bottom: 18px;
    }

    .seo-content__numbered-list li {
        padding-left: 45px;
        margin-bottom: 18px;
        font-size: 14px;
    }

    .seo-content__numbered-list li::before {
        width: 32px;
        height: 32px;
        font-size: 15px;
    }

    .seo-content__bullet-list li {
        padding-left: 30px;
        margin-bottom: 12px;
        font-size: 14px;
    }

    .seo-content__stats-card {
        padding: 25px;
        gap: 18px;
    }

    .seo-content__stats-icon {
        width: 55px;
        height: 55px;
    }

    .seo-content__stats-icon svg {
        width: 28px;
        height: 28px;
    }

    .seo-content__stats-title {
        font-size: 28px;
    }

    .seo-content__stats-desc {
        font-size: 13px;
    }

    .seo-content__cta-card {
        padding: 30px 25px;
    }

    .seo-content__cta-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 18px;
    }

    .seo-content__cta-icon svg {
        width: 26px;
        height: 26px;
    }

    .seo-content__cta-title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .seo-content__cta-text {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .seo-content__cta-button {
        padding: 12px 28px;
        font-size: 14px;
    }

    .seo-content__license-card {
        padding: 20px;
        gap: 15px;
    }

    .seo-content__license-icon {
        width: 45px;
        height: 45px;
    }

    .seo-content__license-icon svg {
        width: 24px;
        height: 24px;
    }

    .seo-content__license-title {
        font-size: 15px;
    }

    .seo-content__license-desc {
        font-size: 12px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .seo-content {
        padding: 40px 0;
    }

    .seo-content__title {
        font-size: 24px;
    }

    .seo-content__subtitle {
        font-size: 20px;
        margin: 30px 0 15px 0;
        padding-left: 15px;
    }

    .seo-content__subtitle::before {
        width: 3px;
        height: 22px;
    }

    .seo-content__text {
        font-size: 14px;
        line-height: 1.7;
    }

    .seo-content__intro {
        padding: 18px;
    }

    .seo-content__intro p {
        font-size: 14px;
    }

    .seo-content__list-block {
        padding: 18px;
        margin: 20px 0;
    }

    .seo-content__list-title {
        font-size: 17px;
        margin-bottom: 15px;
    }

    .seo-content__numbered-list li {
        padding-left: 40px;
        margin-bottom: 15px;
        font-size: 13px;
    }

    .seo-content__numbered-list li::before {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .seo-content__bullet-list li {
        padding-left: 28px;
        font-size: 13px;
    }

    .seo-content__stats-card {
        padding: 20px;
        gap: 15px;
    }

    .seo-content__stats-icon {
        width: 50px;
        height: 50px;
    }

    .seo-content__stats-icon svg {
        width: 26px;
        height: 26px;
    }

    .seo-content__stats-title {
        font-size: 26px;
    }

    .seo-content__stats-desc {
        font-size: 12px;
    }

    .seo-content__cta-card {
        padding: 25px 20px;
    }

    .seo-content__cta-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .seo-content__cta-icon svg {
        width: 24px;
        height: 24px;
    }

    .seo-content__cta-title {
        font-size: 18px;
    }

    .seo-content__cta-text {
        font-size: 13px;
        margin-bottom: 18px;
    }

    .seo-content__cta-button {
        padding: 11px 24px;
        font-size: 13px;
    }

    .seo-content__license-card {
        padding: 18px;
    }

    .seo-content__license-icon {
        width: 42px;
        height: 42px;
    }

    .seo-content__license-icon svg {
        width: 22px;
        height: 22px;
    }

    .seo-content__license-title {
        font-size: 14px;
    }

    .seo-content__license-desc {
        font-size: 11px;
    }
}



