@keyframes dp-shimmer {
	0% {
		transform: translateX(-30%) translateY(-30%) rotate(0deg);
	}

	100% {
		transform: translateX(30%) translateY(30%) rotate(0deg);
	}
}

.dp-hero {
	font-family: 'Segoe UI', Roboto, Arial, sans-serif;
	background: linear-gradient(135deg, #1a1a1a 0%, #2b2b2b 50%, #1a1a1a 100%);
	border-radius: 14px;
	padding: 50px 40px;
	margin: 20px 0 30px;
	border: 1px solid #3a3a3a;
	position: relative;
	overflow: hidden;
	width: 100%;
	box-sizing: border-box;
	max-width: none;
}

.dp-hero::before {
	content: "";
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(115deg, transparent 30%, rgba(220, 220, 220, 0.06) 45%, rgba(255, 255, 255, 0.14) 50%, rgba(220, 220, 220, 0.06) 55%, transparent 70%);
	animation: dp-shimmer 6s ease-in-out infinite;
	pointer-events: none;
}

.dp-hero-inner {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 720px;
	margin: 0 auto;
	width: 100%;
	box-sizing: border-box;
}

.dp-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: linear-gradient(135deg, rgba(214, 43, 43, 0.15), rgba(163, 0, 0, 0.08));
	border: 1px solid rgba(255, 91, 91, 0.35);
	border-radius: 24px;
	padding: 6px 18px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 22px;
	background: linear-gradient(90deg, #ffdede, #ff8080, #ffdede);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	border-image: none;
}

.dp-hero-badge-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #ff5b5b;
	display: inline-block;
	-webkit-text-fill-color: #ff5b5b;
}

.dp-hero h1 {
	font-size: 38px;
	font-weight: 900;
	color: #fff;
	margin: 0 0 16px;
	letter-spacing: -1px;
	line-height: 1.15;
}

.dp-hero h1 .dp-accent {
	background: linear-gradient(180deg, #ff8080 0%, #d62b2b 50%, #8e0000 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.dp-hero-sub {
	font-size: 16px;
	color: #b8b8b8;
	line-height: 1.7;
	margin: 0 0 30px;
}

.dp-hero-cta {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
}

.dp-hero-btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: linear-gradient(180deg, #ff5b5b 0%, #d62b2b 50%, #a30000 100%);
	color: #fff;
	font-weight: 800;
	font-size: 15px;
	padding: 14px 32px;
	border-radius: 8px;
	text-decoration: none;
	box-shadow: 0 6px 20px rgba(214, 43, 43, 0.4), 0 2px 6px rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.15);
	transition: all 0.18s ease;
}

.dp-hero-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 26px rgba(214, 43, 43, 0.55), 0 2px 8px rgba(0, 0, 0, 0.35);
}

.dp-hero-btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
	color: #e8e8e8;
	font-weight: 700;
	font-size: 15px;
	padding: 14px 28px;
	border-radius: 8px;
	text-decoration: none;
	border: 1px solid rgba(255, 255, 255, 0.18);
	transition: all 0.18s ease;
}

.dp-hero-btn-secondary:hover {
	border-color: rgba(255, 255, 255, 0.35);
	transform: translateY(-2px);
}

.dp-hero-stats {
	display: flex;
	justify-content: center;
	gap: 0;
	margin-top: 36px;
	flex-wrap: wrap;
}

.dp-hero-stat {
	text-align: center;
	padding: 0 28px;
	border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.dp-hero-stat:last-child {
	border-right: none;
}

.dp-hero-stat-num {
	font-size: 24px;
	font-weight: 900;
	background: linear-gradient(180deg, #ff8080, #d62b2b);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.dp-hero-stat-label {
	font-size: 10px;
	color: #888;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-top: 4px;
}

@media (max-width: 640px) {
	.dp-hero {
		padding: 36px 22px;
	}

	.dp-hero h1 {
		font-size: 28px;
	}

	.dp-hero-stat {
		padding: 8px 16px;
		border-right: none;
	}
}

.dp-about {
	font-family: 'Segoe UI', Roboto, Arial, sans-serif;
	background: linear-gradient(135deg, #1a1a1a 0%, #2b2b2b 50%, #1a1a1a 100%);
	border-radius: 14px;
	padding: 40px 36px;
	margin: 30px 0;
	border: 1px solid #3a3a3a;
	position: relative;
	overflow: hidden;
}

.dp-about::before {
	content: "";
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(115deg, transparent 30%, rgba(220, 220, 220, 0.06) 45%, rgba(255, 255, 255, 0.12) 50%, rgba(220, 220, 220, 0.06) 55%, transparent 70%);
	animation: dp-shimmer 6s ease-in-out infinite;
	pointer-events: none;
}

.dp-about-inner {
	position: relative;
	z-index: 1;
}

.dp-about h2 {
	font-size: 26px;
	font-weight: 900;
	color: #fff;
	margin: 0 0 6px;
	letter-spacing: -0.5px;
}

.dp-about h2 strong {
	background: linear-gradient(180deg, #ff5b5b 0%, #d62b2b 50%, #8e0000 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.dp-about-divider {
	width: 60px;
	height: 3px;
	background: linear-gradient(90deg, #e0e0e0, #888, #e0e0e0);
	border-radius: 2px;
	margin: 14px 0 22px;
}

.dp-about p {
	font-size: 15px;
	color: #c8c8c8;
	line-height: 1.8;
	margin: 0 0 16px;
}

.dp-about p strong {
	color: #fff;
}

.dp-about h3 {
	font-size: 19px;
	font-weight: 800;
	color: #fff;
	margin: 28px 0 12px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.dp-about h3::before {
	content: "";
	width: 4px;
	height: 22px;
	background: linear-gradient(180deg, #ff5b5b, #a30000);
	border-radius: 2px;
	flex-shrink: 0;
}

.dp-quote {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-left: 3px solid #d62b2b;
	border-radius: 0 10px 10px 0;
	padding: 18px 22px;
	margin: 18px 0;
	position: relative;
}

.dp-quote::before {
	content: "DRAGON PHARMA";
	position: absolute;
	top: -9px;
	left: 18px;
	background: #1a1a1a;
	padding: 0 10px;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 2px;
	background: linear-gradient(90deg, #ffdede, #ff8080, #ffdede);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.dp-quote p {
	color: #e8e8e8;
	font-style: italic;
	font-size: 14px;
	margin: 4px 0 0;
}

@media (max-width: 640px) {
	.dp-about {
		padding: 28px 22px;
	}

	.dp-about h2 {
		font-size: 22px;
	}
}

.dp-hero-btn-secondary:hover {
	border-color: rgba(255, 255, 255, 0.35);
	transform: translateY(-2px);
	color: #fff;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05));
}

.dp-hero-categories {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-top: 32px;
}

.dp-hero-cat {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: #d8d8d8;
	font-size: 13px;
	font-weight: 700;
	padding: 9px 18px;
	border-radius: 22px;
	text-decoration: none;
	transition: all 0.18s ease;
}

.dp-hero-cat:hover {
	border-color: #ff5b5b;
	color: #fff;
	background: linear-gradient(180deg, rgba(214, 43, 43, 0.25), rgba(163, 0, 0, 0.1));
	transform: translateY(-2px);
}

.dp-hero-line {
	font-size: 13px;
	color: #888;
	letter-spacing: 0.5px;
	margin-top: 34px;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	text-align: center;
}

.dp-hero-line strong {
	color: #ff8080;
}

@media (max-width: 640px) {
	.dp-hero-cat {
		font-size: 12px;
		padding: 8px 14px;
	}
}

.dp-cat-section {
	font-family: 'Segoe UI', Roboto, Arial, sans-serif;
	margin: 30px 0;
}

.dp-cat-header {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 30px;
}

.dp-cat-header h3 {
	font-size: 26px;
	font-weight: 900;
	color: #1a1a1a;
	margin: 0 0 10px;
	letter-spacing: -0.5px;
}

.dp-cat-header h3 .dp-accent-dark {
	background: linear-gradient(180deg, #ff5b5b 0%, #d62b2b 50%, #8e0000 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.dp-cat-header-divider {
	width: 60px;
	height: 3px;
	background: linear-gradient(90deg, #d62b2b, #888, #d62b2b);
	border-radius: 2px;
	margin: 0 auto 18px;
}

.dp-cat-header p {
	font-size: 15px;
	color: #666;
	line-height: 1.75;
	margin: 0;
}

.dp-cat-block {
	background: linear-gradient(135deg, #1a1a1a 0%, #2b2b2b 50%, #1a1a1a 100%);
	border-radius: 14px;
	border: 1px solid #3a3a3a;
	border-left: 4px solid #d62b2b;
	padding: 32px 36px;
	position: relative;
	overflow: hidden;
}

.dp-cat-block::before {
	content: "";
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(115deg, transparent 30%, rgba(220, 220, 220, 0.05) 45%, rgba(255, 255, 255, 0.1) 50%, rgba(220, 220, 220, 0.05) 55%, transparent 70%);
	animation: dp-shimmer 7s ease-in-out infinite;
	pointer-events: none;
}

.dp-cat-block-inner {
	position: relative;
	z-index: 1;
}

.dp-cat-block h3 {
	font-size: 22px;
	font-weight: 900;
	margin: 0 0 14px;
}

.dp-cat-block h3 a {
	color: #fff;
	text-decoration: none;
	transition: color 0.18s ease;
}

.dp-cat-block h3 a:hover {
	color: #ff8080;
}

.dp-cat-block p {
	font-size: 15px;
	color: #c8c8c8;
	line-height: 1.8;
	margin: 0 0 16px;
}

.dp-cat-block p:last-child {
	margin-bottom: 0;
}

@media (max-width: 640px) {
	.dp-cat-header h3 {
		font-size: 22px;
	}

	.dp-cat-block {
		padding: 24px 22px;
	}

	.dp-cat-block h3 {
		font-size: 19px;
	}
}

.dp-final-section {
	font-family: 'Segoe UI', Roboto, Arial, sans-serif;
	margin: 30px 0;
}

.dp-final-card {
	background: linear-gradient(135deg, #1a1a1a 0%, #2b2b2b 50%, #1a1a1a 100%);
	border-radius: 14px;
	border: 1px solid #3a3a3a;
	padding: 40px 36px;
	position: relative;
	overflow: hidden;
}

.dp-final-card::before {
	content: "";
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(115deg, transparent 30%, rgba(220, 220, 220, 0.05) 45%, rgba(255, 255, 255, 0.1) 50%, rgba(220, 220, 220, 0.05) 55%, transparent 70%);
	animation: dp-shimmer 8s ease-in-out infinite;
	pointer-events: none;
}

.dp-final-inner {
	position: relative;
	z-index: 1;
}

.dp-final-card h3 {
	font-size: 22px;
	font-weight: 900;
	color: #fff;
	margin: 0 0 18px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.dp-final-card h3::before {
	content: "";
	width: 4px;
	height: 24px;
	background: linear-gradient(180deg, #ff5b5b, #a30000);
	border-radius: 2px;
	flex-shrink: 0;
}

.dp-final-card>.dp-final-inner>h3:not(:first-child) {
	margin-top: 36px;
	padding-top: 28px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.dp-final-card p {
	font-size: 15px;
	color: #c8c8c8;
	line-height: 1.8;
	margin: 0 0 14px;
}

.dp-final-card p:last-child {
	margin-bottom: 0;
}

.dp-final-card p strong {
	color: #fff;
}

.dp-final-card a {
	color: #ff8080;
	font-weight: 700;
	text-decoration: none;
	transition: color 0.18s ease;
}

.dp-final-card a:hover {
	color: #ffb3b3;
}

.dp-benefit-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 14px;
}

.dp-benefit-list li {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 10px;
	padding: 16px 18px;
	font-size: 14px;
	color: #c8c8c8;
	line-height: 1.65;
	position: relative;
	padding-left: 38px;
}

.dp-benefit-list li::before {
	content: "";
	position: absolute;
	left: 16px;
	top: 18px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: linear-gradient(135deg, #ff5b5b, #a30000);
}

.dp-benefit-list li strong {
	color: #fff;
}

@media (max-width: 640px) {
	.dp-final-card {
		padding: 28px 22px;
	}

	.dp-final-card h3 {
		font-size: 19px;
	}

	.dp-benefit-list {
		grid-template-columns: 1fr;
	}
}

.dp-identity {
	font-family: 'Segoe UI', Roboto, Arial, sans-serif;
	background: linear-gradient(135deg, #1a1a1a 0%, #2b2b2b 50%, #1a1a1a 100%);
	border-radius: 14px;
	border: 1px solid #3a3a3a;
	padding: 32px 36px;
	margin: 20px 0 30px;
	position: relative;
	overflow: hidden;
}

.dp-identity::before {
	content: "";
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(115deg, transparent 30%, rgba(220, 220, 220, 0.06) 45%, rgba(255, 255, 255, 0.13) 50%, rgba(220, 220, 220, 0.06) 55%, transparent 70%);
	animation: dp-shimmer 6s ease-in-out infinite;
	pointer-events: none;
}

.dp-identity-inner {
	position: relative;
	z-index: 1;
}

.dp-identity-eyebrow {
	display: inline-block;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
	background: linear-gradient(90deg, #ffdede, #ff8080, #ffdede);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 12px;
}

.dp-identity-substance {
	font-size: 30px;
	font-weight: 900;
	color: #fff;
	margin: 0 0 6px;
	letter-spacing: -0.5px;
	line-height: 1.15;
}

.dp-identity-tradename {
	font-size: 15px;
	color: #b8b8b8;
	font-weight: 700;
	margin-bottom: 24px;
}

.dp-identity-dot {
	color: #d62b2b;
	margin: 0 10px;
	font-weight: 900;
}

.dp-identity-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 12px;
	margin-bottom: 26px;
}

.dp-identity-cell {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 10px;
	padding: 12px 14px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.dp-identity-cell-label {
	font-size: 10px;
	color: #888;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	font-weight: 700;
}

.dp-identity-cell-val {
	font-size: 16px;
	color: #fff;
	font-weight: 800;
}

.dp-identity-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.dp-identity-seal {
	font-size: 13px;
	font-weight: 800;
	color: #fff;
	display: flex;
	align-items: center;
	gap: 8px;
}

.dp-identity-seal::before {
	content: "";
	width: 4px;
	height: 16px;
	background: linear-gradient(180deg, #ff5b5b, #a30000);
	border-radius: 2px;
}

.dp-identity-batch {
	font-size: 12px;
	color: #999;
	font-weight: 700;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 16px;
	padding: 5px 14px;
}

@media (max-width: 640px) {
	.dp-identity {
		padding: 24px 22px;
	}

	.dp-identity-substance {
		font-size: 24px;
	}

	.dp-identity-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.dp-identity-footer {
		flex-direction: column;
		align-items: flex-start;
	}
}

.dp-article {
	font-family: 'Segoe UI', Roboto, Arial, sans-serif;
	color: #2b2b2b;
	line-height: 1.8;
}

.dp-article h2 {
	font-size: 24px;
	font-weight: 900;
	color: #1a1a1a;
	margin: 0 0 14px;
}

.dp-article h3 {
	font-size: 19px;
	font-weight: 800;
	color: #1a1a1a;
	margin: 30px 0 12px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.dp-article h3::before {
	content: "";
	width: 4px;
	height: 20px;
	background: linear-gradient(180deg, #ff5b5b, #a30000);
	border-radius: 2px;
	flex-shrink: 0;
}

.dp-article p {
	font-size: 15px;
	color: #444;
	margin: 0 0 14px;
}

.dp-article ul {
	margin: 0 0 14px;
	padding-left: 22px;
}

.dp-article li {
	font-size: 15px;
	color: #444;
	margin-bottom: 8px;
	line-height: 1.7;
}

.dp-article a {
	color: #d62b2b;
	font-weight: 700;
	text-decoration: none;
}

.dp-article a:hover {
	color: #a30000;
	text-decoration: underline;
}

.dp-also-known {
	font-size: 13px;
	color: #888;
	font-style: italic;
	border-left: 3px solid #d62b2b;
	padding-left: 14px;
	margin: 0 0 20px;
}

.dp-table-wrap {
	overflow-x: auto;
	margin: 0 0 16px;
	border-radius: 10px;
	border: 1px solid #e0e0e0;
}

.dp-table-wrap table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
}

.dp-table-wrap th {
	background: linear-gradient(135deg, #1a1a1a, #2b2b2b);
	color: #fff;
	font-weight: 800;
	text-align: left;
	padding: 12px 16px;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.dp-table-wrap td {
	padding: 12px 16px;
	border-bottom: 1px solid #eee;
	color: #444;
}

.dp-table-wrap tr:last-child td {
	border-bottom: none;
}

.dp-table-wrap tr:nth-child(even) td {
	background: #fafafa;
}