.itp-order-box {
	max-width: 480px;
	margin: 0 auto;
	padding: 32px;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.itp-form-row {
	margin-bottom: 18px;
}

.itp-form-row label {
	display: block;
	margin-bottom: 6px;
	font-weight: 600;
	font-size: 14px;
	color: #1c0a33;
}

.itp-form-row input {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #d9cfe6;
	border-radius: 10px;
	font-size: 15px;
	box-sizing: border-box;
}

.itp-form-row input:focus {
	outline: none;
	border-color: #641c99;
	box-shadow: 0 0 0 3px rgba(100, 28, 153, 0.15);
}

.itp-btn-submit {
	display: inline-block;
	width: 100%;
	text-align: center;
	padding: 14px 20px;
	background: linear-gradient(135deg, #9b3fd9 0%, #641c99 55%, #2a0a4d 100%);
	color: #fff;
	border: none;
	border-radius: 10px;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	transition: opacity 0.2s ease;
}

.itp-btn-submit:hover { opacity: 0.92; }

.itp-btn-submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.itp-form-message {
	min-height: 20px;
	margin: 14px 0 0;
	font-size: 14px;
	font-weight: 600;
}

.itp-form-message--success { color: #1a7f37; }
.itp-form-message--error { color: #c1121f; }
.itp-form-message--info { color: #555; }

.itp-form-note {
	margin-top: 12px;
	font-size: 12px;
	color: #767676;
}

.itp-blog-cta {
	margin: 48px 0;
	padding: 32px 24px;
	border-radius: 16px;
	background: #f8f6fb;
	text-align: center;
}

.itp-blog-cta h3 {
	margin-bottom: 8px;
}

.itp-blog-cta > p {
	color: #656271;
	margin-bottom: 24px;
}

.itp-blog-cta .itp-order-box {
	text-align: left;
}

.itp-btn-cta {
	display: inline-block;
	width: 100%;
	text-align: center;
	padding: 14px 20px;
	background: #641c99;
	color: #fff;
	border: none;
	border-radius: 10px;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	text-decoration: none;
	transition: background 0.2s ease, transform 0.1s ease;
}

.itp-btn-cta:hover {
	background: #4a1573;
}

.itp-pricing-card {
	max-width: 380px;
	margin: 0 auto;
	padding: 32px;
	border-radius: 16px;
	background: #0f1115;
	color: #fff;
	text-align: center;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.itp-pricing-badge {
	display: inline-block;
	padding: 4px 14px;
	border-radius: 20px;
	background: rgba(100, 28, 153, 0.25);
	color: #b47aff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.itp-pricing-card h3 {
	margin: 14px 0 4px;
	font-size: 26px;
	color: #b47aff;
}

.itp-pricing-amount {
	margin: 6px 0 0;
	font-size: 18px;
	color: #c8ccd2;
}

.itp-pricing-amount span {
	font-size: 44px;
	font-weight: 800;
	color: #fff;
}

.itp-pricing-sub {
	margin: 4px 0 20px;
	font-size: 13px;
	color: #8b909a;
}

.itp-pricing-features {
	list-style: none;
	margin: 0 0 24px;
	padding: 0;
	text-align: left;
}

.itp-pricing-features li {
	padding: 8px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 14px;
}

.itp-pricing-features li::before {
	content: '✔';
	color: #b47aff;
	margin-right: 10px;
	font-weight: 700;
}

.itp-compat-table h3 {
	text-align: center;
	margin-bottom: 20px;
}

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

.itp-compat-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 16px;
	background: #f6f7f9;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 600;
}

.itp-compat-check {
	color: #1a7f37;
	font-size: 16px;
}

.itp-faq {
	max-width: 760px;
	margin: 0 auto;
}

.itp-faq-item {
	border-bottom: 1px solid #e4e6ea;
	padding: 16px 0;
}

.itp-faq-question {
	cursor: pointer;
	font-weight: 700;
	font-size: 16px;
	list-style: none;
}

.itp-faq-question::-webkit-details-marker { display: none; }

.itp-faq-question::after {
	content: '+';
	float: right;
	font-size: 20px;
	color: #641c99;
}

.itp-faq-item[open] .itp-faq-question::after {
	content: '−';
}

.itp-faq-answer {
	margin-top: 10px;
	color: #444;
	line-height: 1.6;
}

.itp-breadcrumb ol {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 0 0 20px;
	padding: 0;
	font-size: 13px;
	color: #767676;
}

.itp-breadcrumb li:not(:last-child)::after {
	content: '/';
	margin-left: 6px;
	color: #c3c6cc;
}

.itp-breadcrumb a {
	color: #641c99;
	text-decoration: none;
}

.itp-share-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 24px 0;
}

.itp-share-buttons a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	border-radius: 8px;
	background: #f2f3f5;
	color: #1d2327;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
}

.itp-share-buttons a:hover {
	background: #e4e6ea;
}

.itp-related-posts {
	margin: 40px 0;
}

.itp-related-posts h3 {
	margin-bottom: 16px;
}

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

.itp-related-grid li img {
	width: 100%;
	height: 140px;
	object-fit: cover;
	border-radius: 10px;
}

.itp-related-grid a {
	text-decoration: none;
	color: inherit;
	font-weight: 600;
	display: block;
	margin-top: 8px;
}

.itp-reviews-section {
	padding: 48px 0;
}

.itp-reviews-head {
	text-align: center;
	margin-bottom: 32px;
}

.itp-reviews-summary {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
}

.itp-reviews-stars {
	color: #b47aff;
	font-size: 18px;
	letter-spacing: 2px;
}

.itp-reviews-score {
	font-weight: 700;
	color: #656271;
	font-size: 14px;
}

.itp-reviews-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

.itp-review-card {
	padding: 24px;
	border-radius: 14px;
	background: #f8f6fb;
	border: 1px solid #e7e3ec;
}

.itp-review-card .itp-review-stars {
	color: #b47aff;
	font-size: 15px;
	letter-spacing: 2px;
	margin-bottom: 8px;
}

.itp-review-body {
	margin: 0 0 16px;
	color: #444;
	font-size: 14.5px;
	line-height: 1.6;
}

.itp-review-photos {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 16px;
}

.itp-review-photos img {
	width: 72px;
	height: 72px;
	object-fit: cover;
	border-radius: 8px;
}

.itp-review-author {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.itp-review-name {
	font-weight: 700;
	font-size: 14px;
	color: #1c0a33;
}

.itp-review-meta {
	font-size: 12.5px;
	color: #767676;
}

.itp-review-form-box {
	max-width: 560px;
	margin: 40px auto 0;
	padding: 32px;
	border-radius: 16px;
	background: #fff;
	border: 1px solid #e7e3ec;
}

.itp-review-form-box h3 {
	margin-bottom: 18px;
	text-align: center;
}

.itp-review-stars-input {
	display: flex;
	justify-content: center;
	gap: 6px;
	margin-bottom: 20px;
}

.itp-star-btn {
	background: none;
	border: none;
	cursor: pointer;
	font-size: 30px;
	line-height: 1;
	color: #d9d4e2;
	padding: 0;
}

.itp-star-btn.is-active {
	color: #b47aff;
}

.itp-review-form textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #d9cfe6;
	border-radius: 10px;
	font-size: 15px;
	font-family: inherit;
	resize: vertical;
	box-sizing: border-box;
}

.itp-review-form textarea:focus {
	outline: none;
	border-color: #641c99;
	box-shadow: 0 0 0 3px rgba(100, 28, 153, 0.15);
}

.itp-review-form input[type="file"] {
	width: 100%;
	font-size: 14px;
}

.itp-honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

