.phdnh-app,
.phdnh-app * {
	box-sizing: border-box;
}

.phdnh-app {
	--phdnh-deep: #064e3b;
	--phdnh-green: #059669;
	--phdnh-bright: #10b981;
	--phdnh-lime: #a3e635;
	--phdnh-pale: #ecfdf5;
	--phdnh-border: #bbf7d0;
	--phdnh-ink: #12352c;
	--phdnh-muted: #58736b;
	max-width: 1080px;
	margin: 24px auto;
	color: var(--phdnh-ink);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: 1.55;
	background: #f7fffb;
	border: 1px solid #d1fae5;
	border-radius: 28px;
	box-shadow: 0 24px 70px rgba(6, 78, 59, .14);
	overflow: hidden;
}

.phdnh-app h2,
.phdnh-app h3,
.phdnh-app h4,
.phdnh-app p {
	margin: 0;
}

.phdnh-hero {
	position: relative;
	display: flex;
	align-items: center;
	gap: 22px;
	padding: 34px 38px;
	color: #fff;
	background:
		radial-gradient(circle at 92% 12%, rgba(163, 230, 53, .32) 0 70px, transparent 71px),
		radial-gradient(circle at 5% 100%, rgba(52, 211, 153, .28) 0 105px, transparent 106px),
		linear-gradient(130deg, #064e3b 0%, #047857 48%, #10b981 100%);
}

.phdnh-hero::after {
	content: "";
	position: absolute;
	right: 34px;
	bottom: -28px;
	width: 132px;
	height: 90px;
	border: 2px solid rgba(255, 255, 255, .14);
	border-radius: 50%;
	transform: rotate(-18deg);
}

.phdnh-hero__icon {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: center;
	flex: 0 0 68px;
	width: 68px;
	height: 68px;
	font-size: 34px;
	color: #064e3b;
	background: linear-gradient(145deg, #d9f99d, #86efac);
	border: 3px solid rgba(255, 255, 255, .65);
	border-radius: 22px;
	box-shadow: 0 12px 26px rgba(0, 0, 0, .18);
	transform: rotate(-5deg);
}

.phdnh-hero > div:last-child {
	position: relative;
	z-index: 1;
}

.phdnh-kicker {
	margin-bottom: 6px !important;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .15em;
	opacity: .86;
}

.phdnh-hero h2 {
	color: #fff;
	font-size: clamp(28px, 4vw, 43px);
	font-weight: 900;
	line-height: 1.12;
	letter-spacing: -.035em;
}

.phdnh-hero p:last-child {
	max-width: 660px;
	margin-top: 8px;
	color: #ecfdf5;
	font-size: 16px;
}

.phdnh-content {
	padding: 28px;
}

.phdnh-card {
	margin: 0 0 20px;
	padding: 24px;
	background: rgba(255, 255, 255, .96);
	border: 1px solid #d9f5e5;
	border-radius: 20px;
	box-shadow: 0 8px 24px rgba(6, 78, 59, .055);
}

.phdnh-course-card {
	background: linear-gradient(110deg, #fff 0%, #f0fdf4 100%);
}

.phdnh-section-title {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 20px;
}

.phdnh-section-title > span {
	display: grid;
	place-items: center;
	flex: 0 0 42px;
	width: 42px;
	height: 42px;
	color: #fff;
	font-size: 18px;
	font-weight: 900;
	background: linear-gradient(145deg, var(--phdnh-green), var(--phdnh-bright));
	border-radius: 14px;
	box-shadow: 0 7px 15px rgba(5, 150, 105, .22);
}

.phdnh-section-title h3 {
	color: var(--phdnh-deep);
	font-size: 21px;
	font-weight: 850;
	line-height: 1.2;
}

.phdnh-section-title p {
	margin-top: 3px;
	color: var(--phdnh-muted);
	font-size: 13px;
}

.phdnh-section-title--small > span {
	flex-basis: 38px;
	width: 38px;
	height: 38px;
	font-size: 16px;
}

.phdnh-section-title--small h3 {
	font-size: 18px;
}

.phdnh-label,
.phdnh-field > span {
	display: block;
	margin-bottom: 7px;
	color: #245b4c;
	font-size: 13px;
	font-weight: 800;
}

.phdnh-field small {
	color: var(--phdnh-green);
	font-size: 11px;
	font-weight: 900;
}

.phdnh-select,
.phdnh-input {
	display: block;
	width: 100% !important;
	height: 48px !important;
	margin: 0 !important;
	padding: 0 14px !important;
	color: #143f34 !important;
	font-family: inherit !important;
	font-size: 16px !important;
	font-weight: 700 !important;
	line-height: 48px !important;
	background: #fbfffd !important;
	border: 2px solid #ccebd8 !important;
	border-radius: 12px !important;
	box-shadow: none !important;
	outline: 0 !important;
	transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.phdnh-select {
	max-width: 420px;
}

.phdnh-select:focus,
.phdnh-input:focus {
	border-color: var(--phdnh-bright) !important;
	box-shadow: 0 0 0 4px rgba(16, 185, 129, .14) !important;
}

.phdnh-input.is-invalid {
	border-color: #ef4444 !important;
	background: #fff7f7 !important;
}

.phdnh-input-grid {
	display: grid;
	gap: 14px;
}

.phdnh-input-grid--two {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.phdnh-input-grid--three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.phdnh-two-columns {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.phdnh-two-columns .phdnh-card {
	margin: 0 0 20px;
}

.phdnh-info-strip {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
	padding: 11px 14px;
	color: #075a42;
	font-size: 13px;
	font-weight: 800;
	background: #ecfdf5;
	border: 1px solid #a7f3d0;
	border-radius: 12px;
}

.phdnh-info-strip span {
	display: grid;
	place-items: center;
	width: 24px;
	height: 24px;
	color: #fff;
	background: var(--phdnh-green);
	border-radius: 50%;
}

.phdnh-language-list {
	display: grid;
	gap: 14px;
}

.phdnh-exam-group {
	min-width: 0;
	margin: 0;
	padding: 17px;
	background: #fbfffd;
	border: 1px solid #d7f4e3;
	border-radius: 16px;
}

.phdnh-exam-group legend {
	padding: 0 9px;
	color: var(--phdnh-deep);
	font-size: 15px;
	font-weight: 900;
}

.phdnh-exam-score {
	margin-top: 10px !important;
	color: var(--phdnh-muted);
	font-size: 12px;
	font-weight: 700;
}

.phdnh-exam-score.has-score {
	color: #047857;
}

.phdnh-notice {
	margin: 0 0 18px;
	padding: 13px 16px;
	color: #8a2c0d;
	font-size: 14px;
	font-weight: 750;
	background: #fff7ed;
	border: 1px solid #fdba74;
	border-radius: 13px;
}

.phdnh-actions {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin: 5px 0 26px;
}

.phdnh-button,
.phdnh-app button.phdnh-button,
.phdnh-app button.phdnh-button:hover,
.phdnh-app button.phdnh-button:focus {
	min-height: 48px;
	margin: 0 !important;
	padding: 12px 21px !important;
	color: #fff !important;
	font-family: inherit !important;
	font-size: 14px !important;
	font-weight: 900 !important;
	line-height: 1.2 !important;
	text-decoration: none !important;
	text-shadow: none !important;
	border: 0 !important;
	border-radius: 13px !important;
	box-shadow: 0 9px 20px rgba(5, 150, 105, .2) !important;
	cursor: pointer;
	opacity: 1 !important;
	visibility: visible !important;
	transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.phdnh-button--primary,
.phdnh-app button.phdnh-button--primary,
.phdnh-app button.phdnh-button--primary:hover,
.phdnh-app button.phdnh-button--primary:focus {
	background: linear-gradient(135deg, #047857, #10b981) !important;
}

.phdnh-button--secondary,
.phdnh-app button.phdnh-button--secondary,
.phdnh-app button.phdnh-button--secondary:hover,
.phdnh-app button.phdnh-button--secondary:focus {
	color: #075a42 !important;
	background: #d1fae5 !important;
	box-shadow: 0 7px 16px rgba(6, 78, 59, .1) !important;
}

.phdnh-button--target,
.phdnh-app button.phdnh-button--target,
.phdnh-app button.phdnh-button--target:hover,
.phdnh-app button.phdnh-button--target:focus {
	background: #064e3b !important;
}

.phdnh-app button.phdnh-button:hover {
	filter: brightness(1.07);
	transform: translateY(-2px);
}

.phdnh-app button.phdnh-button:focus-visible {
	outline: 4px solid rgba(163, 230, 53, .6) !important;
	outline-offset: 3px !important;
}

.phdnh-results {
	margin: 2px 0 22px;
	padding: 26px;
	background: linear-gradient(145deg, #ecfdf5 0%, #f7fee7 100%);
	border: 1px solid #a7f3d0;
	border-radius: 22px;
	box-shadow: 0 14px 36px rgba(5, 150, 105, .11);
}

.phdnh-result-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 20px;
}

.phdnh-result-heading .phdnh-kicker {
	color: #047857;
}

.phdnh-result-heading h3 {
	color: var(--phdnh-deep);
	font-size: 25px;
	font-weight: 900;
}

.phdnh-period-badge {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 12px 14px 12px 18px;
	color: #fff;
	background: linear-gradient(135deg, #065f46, #10b981);
	border-radius: 16px;
	box-shadow: 0 10px 24px rgba(5, 150, 105, .25);
}

.phdnh-period-badge span {
	max-width: 110px;
	font-size: 12px;
	font-weight: 850;
	line-height: 1.25;
}

.phdnh-period-badge strong {
	display: grid;
	place-items: center;
	min-width: 64px;
	height: 58px;
	padding: 0 8px;
	color: #064e3b;
	font-size: 25px;
	font-weight: 950;
	background: #d9f99d;
	border-radius: 12px;
}

.phdnh-result-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.phdnh-result-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	min-height: 54px;
	padding: 10px 14px;
	background: rgba(255, 255, 255, .88);
	border: 1px solid #c8f2d8;
	border-radius: 13px;
}

.phdnh-result-row span {
	font-size: 13px;
	font-weight: 750;
}

.phdnh-result-row strong {
	flex: 0 0 auto;
	color: #047857;
	font-size: 18px;
	font-weight: 950;
}

.phdnh-result-row--wide {
	grid-column: 1 / -1;
	background: #fff;
}

.phdnh-formula {
	margin-top: 12px;
	padding: 12px 14px;
	color: #41645b;
	font-size: 12px;
	font-weight: 650;
	background: rgba(255, 255, 255, .62);
	border-left: 4px solid var(--phdnh-bright);
	border-radius: 0 10px 10px 0;
}

.phdnh-target-card {
	margin-top: 20px;
	padding: 20px;
	background: #fff;
	border: 1px solid #c6efd5;
	border-radius: 17px;
}

.phdnh-target-copy {
	display: flex;
	align-items: center;
	gap: 13px;
	margin-bottom: 16px;
}

.phdnh-target-icon {
	display: grid;
	place-items: center;
	flex: 0 0 42px;
	width: 42px;
	height: 42px;
	color: #fff;
	font-size: 24px;
	background: #10b981;
	border-radius: 50%;
}

.phdnh-target-copy h4 {
	color: var(--phdnh-deep);
	font-size: 17px;
	font-weight: 900;
	line-height: 1.3;
}

.phdnh-target-copy p {
	margin-top: 3px;
	color: var(--phdnh-muted);
	font-size: 12px;
}

.phdnh-target-controls {
	display: flex;
	align-items: flex-end;
	gap: 12px;
}

.phdnh-target-field {
	flex: 1;
}

.phdnh-target-result {
	margin-top: 14px;
	padding: 14px 16px;
	color: #075a42;
	font-size: 14px;
	font-weight: 750;
	background: #ecfdf5;
	border: 1px solid #86efac;
	border-radius: 12px;
}

.phdnh-target-result strong {
	color: #064e3b;
	font-size: 18px;
}

.phdnh-target-result.is-warning {
	color: #8a2c0d;
	background: #fff7ed;
	border-color: #fdba74;
}

.phdnh-footnote {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	padding: 0 4px;
	color: #6a837c;
	font-size: 12px;
}

.phdnh-footnote a,
.phdnh-footnote a:hover {
	color: #047857;
	font-weight: 950;
	text-decoration: none;
}

.phdnh-app [hidden] {
	display: none !important;
}

@media (max-width: 760px) {
	.phdnh-app {
		margin: 12px auto;
		border-radius: 20px;
	}

	.phdnh-hero {
		align-items: flex-start;
		padding: 26px 20px;
	}

	.phdnh-hero__icon {
		flex-basis: 50px;
		width: 50px;
		height: 50px;
		font-size: 24px;
		border-radius: 15px;
	}

	.phdnh-hero h2 {
		font-size: 27px;
	}

	.phdnh-hero p:last-child {
		font-size: 14px;
	}

	.phdnh-content {
		padding: 16px;
	}

	.phdnh-card,
	.phdnh-results {
		padding: 18px;
		border-radius: 17px;
	}

	.phdnh-two-columns,
	.phdnh-result-list {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.phdnh-result-list {
		gap: 9px;
	}

	.phdnh-input-grid--three {
		grid-template-columns: 1fr;
	}

	.phdnh-exam-group .phdnh-input-grid--three,
	.phdnh-two-columns .phdnh-input-grid--three {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.phdnh-result-heading {
		align-items: stretch;
		flex-direction: column;
	}

	.phdnh-period-badge {
		justify-content: space-between;
	}

	.phdnh-period-badge span {
		max-width: none;
	}
}

@media (max-width: 480px) {
	.phdnh-hero__icon {
		display: none;
	}

	.phdnh-input-grid--two,
	.phdnh-exam-group .phdnh-input-grid--three,
	.phdnh-two-columns .phdnh-input-grid--three {
		grid-template-columns: 1fr;
	}

	.phdnh-actions,
	.phdnh-target-controls,
	.phdnh-footnote {
		align-items: stretch;
		flex-direction: column;
	}

	.phdnh-button,
	.phdnh-app button.phdnh-button {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.phdnh-app *,
	.phdnh-app *::before,
	.phdnh-app *::after {
		scroll-behavior: auto !important;
		transition: none !important;
	}
}

/* Hesaplama modu seçimi */
.phdnh-mode-tabs {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin: 0 0 22px;
	padding: 8px;
	background: #dcfce7;
	border: 1px solid #bbf7d0;
	border-radius: 18px;
}

.phdnh-mode-tab,
.phdnh-app button.phdnh-mode-tab,
.phdnh-app button.phdnh-mode-tab:hover,
.phdnh-app button.phdnh-mode-tab:focus {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 54px;
	margin: 0 !important;
	padding: 12px 16px !important;
	color: #075a42 !important;
	font-family: inherit !important;
	font-size: 14px !important;
	font-weight: 900 !important;
	line-height: 1.25 !important;
	text-align: center;
	text-shadow: none !important;
	background: rgba(255, 255, 255, .72) !important;
	border: 2px solid transparent !important;
	border-radius: 13px !important;
	box-shadow: none !important;
	cursor: pointer;
	opacity: 1 !important;
	visibility: visible !important;
	transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.phdnh-app button.phdnh-mode-tab.is-active,
.phdnh-app button.phdnh-mode-tab.is-active:hover,
.phdnh-app button.phdnh-mode-tab.is-active:focus {
	color: #fff !important;
	background: linear-gradient(135deg, #047857, #10b981) !important;
	box-shadow: 0 8px 20px rgba(5, 150, 105, .24) !important;
}

.phdnh-mode-tab span {
	font-size: 19px;
}

.phdnh-app button.phdnh-mode-tab:focus-visible {
	outline: 4px solid rgba(163, 230, 53, .55) !important;
	outline-offset: 2px !important;
}

/* Belge hesaplama bilgilendirmesi */
.phdnh-certificate-intro {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin: 0 0 20px;
}

.phdnh-rule-card {
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: 82px;
	padding: 15px;
	background: #fff;
	border: 1px solid #d7f4e3;
	border-radius: 16px;
	box-shadow: 0 8px 20px rgba(6, 78, 59, .06);
}

.phdnh-rule-card > span {
	display: grid;
	place-items: center;
	flex: 0 0 38px;
	width: 38px;
	height: 38px;
	color: #fff;
	font-size: 20px;
	font-weight: 950;
	background: #10b981;
	border-radius: 12px;
}

.phdnh-rule-card strong,
.phdnh-rule-card small {
	display: block;
}

.phdnh-rule-card strong {
	color: #064e3b;
	font-size: 14px;
	font-weight: 900;
}

.phdnh-rule-card small {
	margin-top: 3px;
	color: #58736b;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.35;
}

.phdnh-rule-card--takdir > span {
	color: #713f12;
	background: #fde047;
}

.phdnh-rule-card--thanks > span {
	color: #164e63;
	background: #67e8f9;
}

.phdnh-rule-card--condition > span {
	background: #0f766e;
}

/* Belge hesaplama tablosu */
.phdnh-table-wrap {
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	border: 1px solid #ccebd8;
	border-radius: 16px;
}

.phdnh-certificate-table {
	width: 100%;
	min-width: 680px;
	margin: 0 !important;
	border: 0 !important;
	border-collapse: separate;
	border-spacing: 0;
	background: #fff;
}

.phdnh-certificate-table th,
.phdnh-certificate-table td {
	padding: 10px 12px !important;
	color: #1c493d;
	font-size: 13px;
	line-height: 1.3;
	text-align: left;
	vertical-align: middle;
	background: #fff;
	border: 0 !important;
	border-bottom: 1px solid #e2f4e8 !important;
}

.phdnh-certificate-table thead th {
	position: sticky;
	top: 0;
	z-index: 1;
	padding-top: 13px !important;
	padding-bottom: 13px !important;
	color: #fff;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .025em;
	background: #08775a;
}

.phdnh-certificate-table thead th:first-child {
	width: 42%;
}

.phdnh-certificate-table thead th:nth-child(2),
.phdnh-certificate-table thead th:nth-child(3),
.phdnh-certificate-table thead th:nth-child(4) {
	width: 19.333%;
}

.phdnh-certificate-table tbody tr:nth-child(even) td {
	background: #f8fffb;
}

.phdnh-certificate-table tbody.phdnh-elective-body td {
	background: #f0fdf4;
}

.phdnh-certificate-table tfoot th {
	padding-top: 13px !important;
	padding-bottom: 13px !important;
	color: #064e3b;
	font-size: 14px;
	font-weight: 950;
	background: #d1fae5;
	border-bottom: 0 !important;
}

.phdnh-course-name {
	font-weight: 850;
}

.phdnh-table-input {
	display: block;
	width: 100% !important;
	min-width: 82px;
	height: 40px !important;
	margin: 0 !important;
	padding: 0 10px !important;
	color: #143f34 !important;
	font-family: inherit !important;
	font-size: 14px !important;
	font-weight: 750 !important;
	line-height: 40px !important;
	background: #fff !important;
	border: 2px solid #ccebd8 !important;
	border-radius: 10px !important;
	box-shadow: none !important;
	outline: 0 !important;
}

.phdnh-course-name-input {
	min-width: 190px;
}

.phdnh-elective-name-field {
	display: flex;
	align-items: center;
	gap: 7px;
}

.phdnh-elective-name-field > span {
	flex: 0 0 auto;
	color: #047857;
	font-size: 11px;
	font-weight: 950;
}

.phdnh-hour-input {
	max-width: 92px;
}

.phdnh-table-input:focus {
	border-color: #10b981 !important;
	box-shadow: 0 0 0 3px rgba(16, 185, 129, .13) !important;
}

.phdnh-table-input.is-invalid,
.phdnh-input.is-invalid {
	background: #fff7f7 !important;
	border-color: #ef4444 !important;
}

.phdnh-certificate-table [data-cert-product] {
	color: #047857;
	font-size: 15px;
	font-weight: 950;
}

.phdnh-elective-meter {
	margin-top: 14px;
	padding: 13px 15px;
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
	border-radius: 13px;
}

.phdnh-elective-meter > div:first-child {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 8px;
	font-size: 12px;
}

.phdnh-elective-meter strong {
	color: #075a42;
	font-weight: 900;
}

.phdnh-elective-meter span {
	color: #58736b;
	font-weight: 750;
}

.phdnh-meter-track {
	height: 9px;
	overflow: hidden;
	background: #d5ebe0;
	border-radius: 999px;
}

.phdnh-meter-track span {
	display: block;
	height: 100%;
	background: #f59e0b;
	border-radius: inherit;
	transition: width .25s ease, background .25s ease;
}

.phdnh-elective-meter.is-complete .phdnh-meter-track span {
	background: linear-gradient(90deg, #059669, #84cc16);
}

.phdnh-elective-meter.is-over {
	background: #fff7ed;
	border-color: #fdba74;
}

.phdnh-elective-meter.is-over .phdnh-meter-track span {
	background: #ef4444;
}

/* Belge sonucu */
.phdnh-certificate-result {
	margin: 0 0 22px;
	padding: 24px;
	background: linear-gradient(145deg, #f0fdf4, #f7fee7);
	border: 1px solid #a7f3d0;
	border-radius: 22px;
	box-shadow: 0 14px 36px rgba(5, 150, 105, .11);
}

.phdnh-certificate-result__badge {
	display: grid;
	grid-template-columns: 58px 1fr;
	grid-template-rows: auto auto;
	column-gap: 15px;
	align-items: center;
	padding: 18px;
	color: #fff;
	background: linear-gradient(135deg, #64748b, #475569);
	border-radius: 17px;
	box-shadow: 0 10px 24px rgba(15, 23, 42, .18);
}

.phdnh-certificate-result__badge > span {
	display: grid;
	grid-row: 1 / 3;
	place-items: center;
	width: 58px;
	height: 58px;
	color: #334155;
	font-size: 29px;
	background: #e2e8f0;
	border-radius: 17px;
}

.phdnh-certificate-result__badge strong {
	font-size: clamp(22px, 4vw, 31px);
	font-weight: 950;
	line-height: 1.15;
}

.phdnh-certificate-result__badge small {
	margin-top: 3px;
	font-size: 12px;
	font-weight: 700;
	opacity: .9;
}

.phdnh-certificate-result__badge.is-takdir {
	color: #4c3100;
	background: linear-gradient(135deg, #fde047, #fbbf24);
}

.phdnh-certificate-result__badge.is-takdir > span {
	color: #854d0e;
	background: #fff7c2;
}

.phdnh-certificate-result__badge.is-tesekkur {
	color: #083344;
	background: linear-gradient(135deg, #67e8f9, #22d3ee);
}

.phdnh-certificate-result__badge.is-tesekkur > span {
	color: #155e75;
	background: #cffafe;
}

.phdnh-certificate-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	margin-top: 14px;
}

.phdnh-certificate-stats > div {
	padding: 14px;
	text-align: center;
	background: rgba(255, 255, 255, .9);
	border: 1px solid #c8f2d8;
	border-radius: 13px;
}

.phdnh-certificate-stats span,
.phdnh-certificate-stats strong {
	display: block;
}

.phdnh-certificate-stats span {
	color: #58736b;
	font-size: 11px;
	font-weight: 750;
}

.phdnh-certificate-stats strong {
	margin-top: 4px;
	color: #047857;
	font-size: 21px;
	font-weight: 950;
}

.phdnh-certificate-detail {
	margin-top: 12px;
	padding: 13px 15px;
	color: #245b4c;
	font-size: 13px;
	font-weight: 700;
	background: #fff;
	border: 1px solid #d7f4e3;
	border-radius: 12px;
}

@media (max-width: 760px) {
	.phdnh-certificate-intro {
		grid-template-columns: 1fr;
	}

	.phdnh-rule-card {
		min-height: 70px;
	}

	.phdnh-certificate-result {
		padding: 18px;
	}
}

@media (max-width: 560px) {
	.phdnh-mode-tabs {
		grid-template-columns: 1fr;
	}

	.phdnh-mode-tab,
	.phdnh-app button.phdnh-mode-tab {
		min-height: 50px;
	}

	.phdnh-certificate-stats {
		grid-template-columns: 1fr;
	}

	.phdnh-certificate-result__badge {
		grid-template-columns: 46px 1fr;
		padding: 14px;
	}

	.phdnh-certificate-result__badge > span {
		width: 46px;
		height: 46px;
		font-size: 23px;
		border-radius: 13px;
	}
}
