
/* Главный экран */ 



 
 .main {
	 padding-bottom: 40px;
  position: relative;
  overflow: hidden;
background:
    radial-gradient(circle at 0% 0%, rgba(57, 216, 111, 0.09), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(57, 216, 111, 0.07), transparent 55%),
    #ffffff;
	
	    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 4px 18px rgba(34, 197, 94, 0.05);
}


 
.main-screen { width: 100%; max-width: 1200px; display: flex; justify-content: space-between; align-items: flex-start; 
			border: 0px solid #fff000;	gap: 20px; margin: 0px auto; padding: 15px 15px 0; }

.left-column { flex: 1; max-width: 800px;  }
.right-column { flex: 1; max-width: 400px;   }

.glav { padding-top: 18px; text-decoration: none;  
font-size: 35px; font-weight: 800;  display: table; color: #111827; }
.glav-span {color: #00c853;   }
.text_g { font-size: 18px; font-weight: 600;  display: table; color: #4b5563; padding-top: 10px; line-height: 1.5; }

.search { display: flex;  margin: 20px 0px; }
.search form { position: relative; width: 650px; display: flex; align-items: center; background: #ffffff;  border-radius: 10px;
				 border: 1px solid #e3e9e6; overflow: hidden; transition: all 0.2s ease; }
/* Фокус */
.search form:focus-within {  border-color: #00c853; box-shadow: 0 0 0 3px rgba(0,200,83,0.05);}
/* Инпут */
.search input { flex: 1; height: 56px; padding: 0 16px 0 44px; border: none; outline: none; 
					font-size: 16px; color: #111827; background: transparent; }
/* Placeholder */
.search input::placeholder { color: #9ca3af;}
/* Иконка */
.search-icon {position: absolute; left: 14px; width: 20px; height: 20px; color: #9ca3af; }
.search button { height: 44px; margin-right: 6px; padding: 0 18px; background: #00c853; color: #ffffff;
				border: none; border-radius: 8px; 
				 font-size: 14px; font-weight: 600; letter-spacing: 1px; cursor: pointer; transition: all 0.2s ease;}
.search button:hover { background: #00b248;}

.sum {
    display: flex;
    gap: 20px;
    width: 100%;
    margin-top: 30px;
}

.sum-blok {
    width: 160px;
    flex: 0 0 160px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    padding: 12px;
    border-radius: 10px;
    background: #fff;
border: 1px solid #e3e9e6;
}


.sum-img {
    width: 45px;
    margin-right: 15px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 33px;
    line-height: 1;
    color: #4ee37d;

    /* ВАЖНО — убираем transform */
}


.sum-value {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0; width: 100%;
    color: #254556;
}


.sum-number {
    font-size: 20px;
    line-height: 22px;
    padding: 0 0 4px;
    letter-spacing: 1px;
    font-weight: 600;
}


.sum-text {
    display: block;
    width: 100%;
    padding: 4px 0 0;
    border-top: 2px solid #4ee37d;
    font-size: 15px;
    line-height: 18px;
}

 


.hero-right { display: flex; flex-direction: column; gap: 16px; float: right;   width: 330px; }
.shop-cards { position: relative; display: flex; align-items: center; gap: 20px; padding: 14px 15px; 
				width: 350px; background: #fff; border-radius: 12px; overflow: hidden; cursor: pointer; 
				transition: transform 0.3s, box-shadow 0.3s; 
				border: 1px dashed #8ed9a8; animation: shadowPulse 5s ease-in-out infinite;
}

/* Смещение карточек */
.shop-cards:nth-child(2) {
    transform: translateX(-15px);
}

.shop-cards:nth-child(3) {
    transform: translateX(15px);
}

.shop-cards:nth-child(4) {
    transform: translateX(-15px);
}
/* Контент карточки */
.shop-cards img {   width: 150px;    object-fit: contain;	    border-radius: 5px;}
.shop-info {   display: flex;   flex-direction: column;}
.cashback {   font-weight: 700;    color: #28a745;   font-size: 16px;}
.services {   font-size: 13px;    color: #6c757d; }
.badge { font-weight: 550; padding-top: 20px; font-size: 20px; color: #374151; transform: translateX(-15px); }
.shop-cards:hover {   transform: translateY(-2px); }
.badge i {
    color: #00c853;
    font-size: 18px;
}


@media (max-width: 768px) {

.main-screen { flex-direction: column; gap: 5px;  padding: 0 20px; }
.left-column,
.right-column {border: 0px solid #334155; width: 100%; }	

.glav { padding: 0; }
.text_g { font-size: 20px; padding: 0;   line-height: 1.5; }
.search form {  width: 100%;}
.search button { height: 44px; margin-right: 6px; padding: 0 10px; background: #00c853; color: #ffffff; border: none; border-radius: 8px; 
				 font-size: 12px; font-weight: 600; letter-spacing: 1px; cursor: pointer; transition: all 0.2s ease;}


}


@media (max-width: 480px) {
	 
.glav { padding: 0; font-size: 33px; line-height: 1.0; margin: 20px 0 10px;}
.glav-span { font-size: 25px; display: block; margin-top: 10px;}
.text_g { font-size: 16px; font-weight: 600;  line-height: 1.3; margin: 0px;}

.sum {
        display: grid;
        /* для 4х карточек: grid-template-columns: repeat(4, 1fr);*/
		grid-template-columns: repeat(3, 1fr);
        gap: 0;

        width: 100%;
        margin: 20px auto 0;

        padding: 10px 0;

        background: #fff;
        border: 1px solid #e5e7eb;
        border-radius: 10px;
    }

    .sum-blok {
        width: 100%;
        max-width: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        padding: 5px 4px;

        border: 0;
        border-radius: 0;

        box-shadow: none;

        text-align: center;
    }

    .sum-blok + .sum-blok {
        border-left: 1px solid #e5e7eb;
    }

    .sum-img {
        width: auto;
        height: auto;
        margin: 0 0 4px;
        font-size: 20px;
    }

    .sum-value {
        width: 100%;
        padding: 0;
    }

    .sum-number {
        width: 100%;
        padding: 0;
        font-size: 16px;
        line-height: 20px;
        text-align: center;
    }

    .sum-text {
        width: 100%;
        margin: 3px 0 0;
        padding: 3px 0 0;
        border-top: 1px solid #4ee37d;
        font-size: 11px;
        line-height: 14px;
        text-align: center;
    }

 .main-screen { flex-direction: column; gap: 0px;  padding: 0 15px; }


    .badge {
        margin: 15px auto 10px;
        padding-top: 0;
        transform: none;
    }

    .hero-right {
        width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 0; 
    }

    .shop-cards {
        width: 100%;
        box-sizing: border-box;
        padding: 10px 15px;
        background: #fff;
        border-radius: 0px;
        box-shadow: none;
        transform: none !important;
        gap: 15px;
    }

    /* Верхняя карточка */
.shop-cards:nth-child(2) {
    border-radius: 10px 10px 0 0;
}

    /* Средняя карточка */
    .shop-cards + .shop-cards {
        border-top: 0;
    }

    /* Нижняя карточка */
    .shop-cards:last-child {
        border-radius: 0 0 10px 10px;
    }

    .shop-cards img {
        width: 150px; 
        object-fit: contain;
    }

    .shop-info {
        min-width: 0;
    }

    .cashback {
        font-size: 14px;
    }

    .services {
        font-size: 12px;
        margin-top: 3px;
    }


}

/* Конец главного экрана */ 





/* Топ кэшбэк-сервисов */


.cash-serv { width: 100%; border: 0px solid #334155; max-width: 1200px; margin: 0px auto; padding: 15px 15px; color: #111827;}
.cash-serv-block { width: 100%; display: flex; justify-content: space-between;}
.cash-column { width: 100%; max-width: 1200px; display: flex; justify-content: space-between; align-items: flex-start; 
			gap: 20px; margin: 10px auto 20px; padding: 0; justify-content: space-between;}

.cash-left-column {  display: flex; flex-direction: column; width: 70%;}
.cash-right-column { flex: 1; display: flex; flex-direction: column;}
.cash-right-mobile { display: none; } 
/* LEFT */
.cash-serv-h2 { font-size:25px; font-weight:800;  line-height:1.3;   color:#222; padding: 0; margin: 0;}
.cash-serv-h2::after{
    content:"";
    display:block;
    width:100px;
    height:3px;
    margin-top:9px;
    background:#4ee37d;
    border-radius:3px;
}

.cash-serv-p { font-size:16px;
    line-height:1.5;
    color:#444; padding: 0;  margin: 15px 0;}

.cash-serv-button { color: #111827; display: flex;  margin-left: auto; text-decoration: none; font-weight: 500; 
font-size: 18px; transition: 0.2s ease; padding-top: 20px;}
.cash-serv-button:hover {  transform: translateY(-2px); }

.cash-serv-grid {  display: flex;  flex-wrap: wrap;  gap: 20px;}

/* Карточка */
.cash-serv-card { display: flex; flex-direction: column; align-items: center; flex: 0 0 calc(25% - 15px); 
					background: #fff; border-radius: 15px; border: 1px solid #aacafe; padding: 15px; }
.cash-serv-card:hover { transform: translateY(-3px); }

/* STATUS COLORS */
.cash-serv-card.green { border-color: #4ee37d;}
.cash-serv-card.yellow { border-color: #FACC15; }
.cash-serv-card.red { border-color: #EF4444; }
.cash-serv-card.closed { border-color: #6B7280; }

.cash-serv-card.closed img { filter: grayscale(100%); opacity: 0.7; }
.service-meta-row.closed { justify-content: center;  color: #6B7280; font-size: 18px; font-weight: 600;}

.cash_img img { max-width: 100%; border-radius: 5px; display: block; margin: 0 auto;}
.cash-serv-span {display: block; text-align: center; margin: 10px auto; font-size: 18px; font-weight: 700; color: #00c853;  }

.service-meta-row { display: flex; justify-content: space-between; align-items: center; padding: 0 14px 10px 14px; 
					font-size: 14px;  font-weight: 600; color: #6B7280; gap: 15px; white-space: nowrap; }

.cash_button { display: block; width: 100%; padding: 10px 5px; background-color: #00c853; color: #fff; text-align: center; 
				text-decoration: none; border-radius: 5px; font-weight: 600;}

.cashback-card__rating { display: flex;  margin: 10px auto;  align-items: center;  gap: 5px;  color: #6b7280; font-size: 13px;  line-height: 1.2;}
.cashback-card__star {   color: #f59e0b; font-size: 18px; line-height: 1.0;}
.cashback-card__score {  color: #111827;   font-weight: 600;}
.cashback-card__separator { color: #d1d5db;}

.service-stats {
    display: flex;
    align-items: center;
    gap: 10px;
	margin: 10px auto; 
    font-size: 13px;
    color: #6b7280; font-weight: 600;
}

.service-stats span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.service-rating .fa-star {
    color: #f59e0b;
}

.service-stats .fa-comment {
    color: #6b7280;
}

.service-stats .fa-store {
    color: #00a846;
}
.service-rating,
.stores-count {
    color: #374151;
    font-weight: 600;
}

.stores-label {
    display: inline;
}

@media (max-width: 768px) {
 .cash-serv-card { flex: 0 0 calc(50% - 10px); }
 
}


@media (max-width: 480px) {
 	 

.cash-column { flex-direction: column; gap: 5px;  padding: 0; }
.cash-left-column { width: 100%; }
.cash-right-column { display: none; }
.cash-right-mobile { display: block; margin: 15px auto 0; align-items: center;}  
.cash-serv-h2 {font-size: 20px;  }
.cash-serv-p { font-size: 14px; margin: 10px 0 0; padding: 0;}
.cash-serv-button { margin: 0 auto; font-weight: 400; font-size: 20px;  padding-top: 0px;}
.cash-serv-card { flex: 0 0 100%;  }
.cash-serv-grid {  display: flex;  flex-wrap: wrap;  gap: 15px;}

    .stores-none {
        display: none !important;
    }
	.service-stats {
	margin: 0; 
}

/* Контейнер карточки */
.cash-serv-card { display: flex; flex-direction: row; align-items: center; gap: 15px; padding: 10px ; }

/* Логотип слева */
.cash_img { flex: 0 0 40%;   }

/* Правая часть */
.cash-content {  display: flex; flex-direction: column;   gap: 0px; flex: 1;}
.cash-serv-span {margin: 0; font-size: 16px; padding: 0px; font-weight: 600;  text-align: left;}
.service-meta-row {  flex-direction: row; gap: 0px;  font-size: 12px;   padding: 0px; }
.cash_button { display: none; }


}

/* конец Топ кэшбэк-сервисов */





/* топ магазинов */
.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 15px 0;  }

/* CARD */
.shop-card { background: #fff; border-radius: 16px; padding: 20px 15px;font-weight: 600; transition: 0.2s ease;
			 position: relative; display: flex; align-items: center; gap: 15px; overflow: hidden;  cursor: pointer; 
			 border: 1px dashed #8ed9a8;}

.shop-card:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.06); }

/* Контент карточки */
.shop-card img {   width: 160px;    object-fit: contain;	    border-radius: 5px;}
.shop-card-info {   display: flex;   flex-direction: column;}
.cashback {   font-weight: 700;    color: #28a745;   font-size: 16px;}
.services {   font-size: 15px;    color: #6c757d; }

@media (max-width: 768px) {
   .shop-grid {  grid-template-columns: repeat(2, 1fr); }
}


@media (max-width: 480px) {
	 

    .shop-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 0;
        background: #fff;
        border: 1px solid #8ed9a8;
        border-radius: 10px;
        overflow: hidden;
    }

    .shop-card {
        width: 100%;
        box-sizing: border-box;
        padding: 12px 15px;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        gap: 15px;
        transform: none !important;
    }

    .shop-card + .shop-card {
        border-top: 1px dashed #8ed9a8;
    }

    .shop-card img {
        width: 150px; 
        object-fit: contain;
        flex-shrink: 0;
    }

    .shop-card-info { min-width: 0;  }

  .cashback {
        font-size: 16px;
    }

    .services {
        margin-top: 0px;
        font-size: 14px; font-weight: 500;
    }
}


/* конец топ магазинов */





.how-premium { padding: 20px 0px 20px ;  background: linear-gradient(180deg, #f8fafc 0%, rgba(57, 216, 111, 0.09) 100%);  max-width: 100%;  }
.how-header { border: 0px solid #334155; text-align: center; max-width: 1200px; margin: 0 auto 20px; }
.how-header h2 { font-size: 32px; font-weight: 800; color: #111827; margin-bottom: 10px; letter-spacing: -0.5px; }
.how-header p { font-size: 14px; color: #6B7280; }

.how-grid-premium { border: 0px solid #334155; display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; max-width: 1200px; 
					margin: 0 auto; padding:0 15px; }
.how-card-premium { background: #fff; border: 1px solid #2563EB; border-radius: 18px; padding: 20px; transition: 0.25s ease; }
.how-card-premium:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); border-color: #D1D5DB; }
.how-row { display: flex; gap: 14px;  align-items: flex-start; }
.how-badge {  width: 38px; height: 38px; border-radius: 10px; background: #EEF2FF; color: #2563EB; font-weight: 700; 
			  display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; }
.how-content { display: flex; flex-direction: column; }
.how-title { font-size: 18px; font-weight: 700;  color: #111827; margin-bottom: 6px; }
.how-text { font-size: 15px; color: #6B7280; line-height: 1.5; }

/* RESPONSIVE */
@media (max-width: 900px) {
	.how-grid-premium { grid-template-columns: 1fr; }
	.how-header h2 { font-size: 26px; }
}

@media (max-width: 480px) {
.how-grid-premium { grid-template-columns: 1fr; gap: 20px; }
.how-premium { padding: 20px 0px 0px ;  }

}


/* SECTION */
.cashback-duo { max-width: 1200px; border: 0px solid #334155; padding: 40px 15px; margin: 0 auto;}

/* GRID */
.cashback-duo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; padding: 0; margin: 0;}

/* CARD */
.cashback-duo-card { background: #fff; border: 1px solid #E5E7EB; padding: 20px 20px 20px 60px; position: relative; }

/* убираем двойную границу между ними */
.cashback-duo-card:first-child { border-right: none; border-radius: 16px 0 0 16px; }

.cashback-duo-card:last-child { border-radius: 0 16px 16px 0;}

/* ICON */

.cashback-duo-icon {
    position: absolute;
    left: 16px;
    top: 20px;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    color: #00c853;
}

/* TEXT */
.cashback-duo-title { font-size: 15px;  font-weight: 700;  margin-bottom: 8px;}

.cashback-duo-text { font-size: 13px; color: #6B7280; line-height: 1.6; }

/* MOBILE */
@media (max-width: 768px) {
	.cashback-duo { padding: 20px 15px; }

	.cashback-duo-grid {
    grid-template-columns: 1fr;  gap: 10px;
	}

	.cashback-duo-card {
    border-radius: 12px !important;
    border-right: 1px solid #E5E7EB !important;
    margin-bottom: 12px;
  }
}


/* - Чому нам довіряють */


.trust-section { 
  padding: 20px 20px;
  background: #f9fafb;
  text-align: center; max-width: 100%;
}

.trust-grid { border: 0px solid #FFF000; 
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 10px auto 20px auto;
}

.trust-card {
  border: 1px solid #E5E7EB; background: #fff;
  border-radius: 14px;
  padding: 20px;
  transition: 0.2s ease;
}

.trust-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.trust-icon {
  font-size: 24px;
  margin-bottom: 10px; color: #00c853;
}

.trust-title {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 6px;
}

.trust-text {
  font-size: 13px;
  color: #6B7280;
}

@media (max-width: 900px) {
	.trust-section { 
  padding: 0px;
}
  .trust-grid {
    grid-template-columns: 1fr;
	margin: 0px auto;
  }
}


/* / Чому нам довіряють */