/* ===========================================================
   Tarifeler sayfası — kart tasarımı
   Kendi içinde bağımsız bir dosya: mevcut .host_plans/.planbox
   stillerine dokunmaz, yalnızca tarifeler.php (ve ana sayfadaki
   kısa tanıtım bloğu) tarafından kullanılır.
   Marka rengi (#86c724) ve site yazı tipleriyle uyumludur.
   =========================================================== */

.tarife-section {
	float: left;
	width: 100%;
	padding: 90px 0 100px 0;
	text-align: center;
	font-family: 'Roboto', sans-serif;
	background: #fbfcfc;
}

.tarife-section .sec-heading h1 {
	font-family: 'Raleway', sans-serif;
	font-size: 32px;
	font-weight: 800;
	color: #2a363f;
	text-transform: uppercase;
	margin: 0 0 14px 0;
}

.tarife-section .sec-heading p {
	color: #7a8a94;
	font-size: 15px;
	max-width: 560px;
	margin: 0 auto;
}

.tarife-grid {
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(3, minmax(260px, 330px));
	gap: 30px;
	justify-content: center;
	margin: 55px auto 0 auto;
	max-width: 1080px;
	padding: 0 20px;
	box-sizing: border-box;
}

.tarife-card {
	position: relative;
	margin-top: 16px;
	background: #fff;
	border: 1px solid #ecefF0;
	border-radius: 16px;
	text-align: center;
	display: flex;
	flex-direction: column;
	box-shadow: 0 10px 26px rgba(42, 54, 63, 0.07);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tarife-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 40px rgba(42, 54, 63, 0.13);
}

.tarife-card .tc-badge {
	display: none;
}

.tarife-card.highlight {
	border: 2px solid #86c724;
}

.tarife-card.highlight .tc-badge {
	display: inline-block;
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	background: #2a363f;
	color: #fff;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.04em;
	padding: 7px 18px;
	border-radius: 20px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
	text-transform: uppercase;
	white-space: nowrap;
}

.tarife-card .tc-head {
	padding: 32px 24px 22px 24px;
	border-radius: 15px 15px 0 0;
	background: -webkit-linear-gradient(top, #eef7de 0%, #ffffff 100%);
	background: linear-gradient(180deg, #eef7de 0%, #ffffff 100%);
	border-bottom: 1px solid #f0f2f3;
}

.tarife-card.highlight .tc-head {
	background: -webkit-linear-gradient(top, #8fce2b 0%, #74ad1f 100%);
	background: linear-gradient(180deg, #8fce2b 0%, #74ad1f 100%);
	border-bottom: none;
}

.tarife-card .tc-title {
	font-size: 17px;
	line-height: 1.3;
	font-weight: 800;
	color: #2a363f;
	text-transform: uppercase;
	margin: 0 0 6px 0;
	letter-spacing: 0.01em;
	/* Başlık, admin panelden girilen metne göre 1 veya 2 satıra kayabilir
	   (uzunluk her zaman öngörülemez — örn. "WEB 10 KABLOSUZ EKO/PLUS").
	   Punto biraz küçültülerek çoğu başlığın tek satıra sığması sağlandı,
	   AMA asıl garanti şu: sabit yükseklik + dikey ortalama sayesinde,
	   1 satır da olsa 2 satır da olsa kartlar arası fiyat/özellik hizası
	   ASLA bozulmaz. */
	min-height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.tarife-card.highlight .tc-title {
	color: #fff;
}

.tarife-card .tc-subtitle {
	font-size: 13px;
	color: #8a959b;
	margin: 0;
}

.tarife-card.highlight .tc-subtitle {
	color: rgba(255, 255, 255, 0.9);
}

.tarife-card .tc-price {
	padding: 28px 24px 6px 24px;
}

.tarife-card .tc-price .amount {
	font-size: 46px;
	font-weight: 800;
	color: #2a363f;
	line-height: 1;
}

.tarife-card .tc-price .currency {
	font-size: 20px;
	font-weight: 700;
	vertical-align: top;
	position: relative;
	top: 4px;
	margin-right: 2px;
	color: #2a363f;
}

.tarife-card .tc-price .period {
	display: block;
	font-size: 13px;
	color: #9aa4a9;
	margin-top: 8px;
}

.tarife-card .tc-features {
	list-style: none;
	margin: 10px 0 0 0;
	padding: 0 26px 6px 26px;
	flex: 1 1 auto;
	text-align: left;
}

.tarife-card .tc-features li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14px;
	color: #4a5560;
	padding: 11px 0;
	border-bottom: 1px solid #f4f5f6;
}

.tarife-card .tc-features li:last-child {
	border-bottom: none;
}

.tarife-card .tc-features li i {
	color: #86c724;
	margin-top: 3px;
	flex: 0 0 auto;
}

.tarife-card .tc-cta {
	padding: 22px 24px 30px 24px;
}

.tarife-card .tc-cta a {
	display: block;
	width: 100%;
	box-sizing: border-box;
	padding: 14px 0;
	background: #86c724;
	color: #fff;
	border-radius: 26px;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: 0.03em;
	text-decoration: none;
	transition: background 0.2s ease;
}

.tarife-card .tc-cta a:hover {
	background: #74ad1f;
	color: #fff;
}

.tarife-card.highlight .tc-cta a {
	background: #2a363f;
}

.tarife-card.highlight .tc-cta a:hover {
	background: #171e23;
}

.tarife-notes {
	max-width: 720px;
	margin: 50px auto 0 auto;
	padding: 0 20px;
}

.tarife-notes p {
	color: #9aa4a9;
	font-size: 13px;
	line-height: 1.8;
	margin: 0;
}

.tarife-empty {
	color: #9aa4a9;
	font-size: 15px;
	margin-top: 40px;
}

/* -----------------------------------------------------------
   Ana sayfadaki kısa tanıtım bloğu (host_plans yerine)
   ----------------------------------------------------------- */
.plans-teaser {
	float: left;
	width: 100%;
	padding: 70px 0;
	text-align: center;
	background: #fff;
}

.plans-teaser h1 {
	font-family: 'Raleway', sans-serif;
	font-size: 28px;
	font-weight: 800;
	color: #2a363f;
	text-transform: uppercase;
	margin: 0 0 14px 0;
}

.plans-teaser p {
	color: #7a8a94;
	font-size: 15px;
	max-width: 520px;
	margin: 0 auto 30px auto;
}

.plans-teaser .teaser-prices {
	display: flex;
	justify-content: center;
	gap: 40px;
	flex-wrap: wrap;
	margin-bottom: 34px;
}

.plans-teaser .teaser-prices .tp-item {
	color: #2a363f;
}

.plans-teaser .teaser-prices .tp-item strong {
	display: block;
	font-size: 26px;
	font-weight: 800;
	color: #86c724;
}

.plans-teaser .teaser-prices .tp-item span {
	font-size: 13px;
	color: #8a959b;
}

.plans-teaser a.button {
	display: inline-block;
	padding: 14px 36px;
	background: #86c724;
	color: #fff;
	border-radius: 26px;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: 0.03em;
	text-decoration: none;
	transition: background 0.2s ease;
}

.plans-teaser a.button:hover {
	background: #74ad1f;
	color: #fff;
}

/* ===========================================================
   Responsive — tablet (768–999px)
   =========================================================== */
@media only screen and (max-width: 999px) {
	.tarife-grid {
		grid-template-columns: repeat(2, minmax(260px, 330px));
	}
}

/* ===========================================================
   Responsive — mobil (≤767px)
   =========================================================== */
@media only screen and (max-width: 767px) {
	.tarife-section {
		padding: 50px 0 60px 0;
	}

	.tarife-section .sec-heading h1 {
		font-size: 22px;
		padding: 0 20px;
	}

	.tarife-section .sec-heading p {
		font-size: 14px;
		padding: 0 20px;
	}

	.tarife-grid {
		grid-template-columns: 1fr;
		gap: 40px;
		margin-top: 45px;
		max-width: 380px;
		padding: 0 20px;
	}

	.tarife-card .tc-price .amount {
		font-size: 40px;
	}

	.plans-teaser {
		padding: 45px 0;
	}

	.plans-teaser h1 {
		font-size: 20px;
		padding: 0 20px;
	}

	.plans-teaser p {
		font-size: 14px;
		padding: 0 20px;
	}

	.plans-teaser .teaser-prices {
		gap: 24px;
		padding: 0 20px;
	}
}

@media only screen and (max-width: 479px) {
	.tarife-card .tc-head {
		padding: 26px 20px 18px 20px;
	}

	.tarife-card .tc-price {
		padding: 22px 20px 6px 20px;
	}

	.tarife-card .tc-features {
		padding: 0 20px 4px 20px;
	}

	.tarife-card .tc-cta {
		padding: 18px 20px 26px 20px;
	}
}
