
	/* AI Assistant Floating Box */
	.ai-float-box {
		position: fixed;
		top: 180px;
		right: 20px;
		width: 340px;
		background: #fff;
		border-radius: 20px;
		box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
		z-index: 1000;
		padding: 24px;
		font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
		display: none;
		animation: aiSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
		border: 1px solid rgba(0,0,0,0.05);
	}

	@keyframes aiSlideIn {
		from { transform: translateX(120%); opacity: 0; }
		to { transform: translateX(0); opacity: 1; }
	}

	.ai-float-box.is-closing {
		animation: aiSlideOut 0.28s cubic-bezier(0.4, 0, 1, 1) forwards;
		pointer-events: none;
	}

	@keyframes aiSlideOut {
		from { transform: translateX(0); opacity: 1; }
		to { transform: translateX(120%); opacity: 0; }
	}

	.ai-float-box .close-btn {
		position: absolute;
		top: 14px;
		right: 14px;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 26px;
		height: 26px;
		padding: 0;
		border: 0;
		border-radius: 50%;
		background: transparent;
		cursor: pointer;
		color: #999;
		transition: background-color 0.2s ease, color 0.2s ease;
	}

	.ai-float-box .close-btn:hover {
		background-color: #f3f4f6;
		color: #3a424d;
	}

	.ai-float-header {
		display: flex;
		align-items: center;
		gap: 10px;
		margin-bottom: 12px;
	}

	.ai-status-dot {
		position: relative;
		width: 10px;
		height: 10px;
		background: #22c55e;
		border-radius: 50%;
	}

	.ai-float-title {
		font-size: 20px;
		font-weight: 700;
		letter-spacing: -0.01em;
	}

	.ai-float-desc {
		font-size: 14px;
		color: #666;
		line-height: 1.6;
		margin-bottom: 16px;
	}

	.ai-credits-offer {
		display: flex;
		align-items: center;
		width: 100%;
		margin-bottom: 16px;
		padding: 7px 6px;
		border: 1px solid transparent;
		border-radius: 10px;
		background:
			linear-gradient(90deg, #fff6fb 0%, #fcf3ff 62%, #fff 100%) padding-box,
			linear-gradient(180deg, #f75db9 0%, #a200fe 100%) border-box;
		color: #202938;
		text-decoration: none;
		box-sizing: border-box;
	}

	.ai-credits-offer-icon {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 20px;
		height: 20px;
		flex-shrink: 0;
	}

	.ai-credits-offer-icon img {
		display: block;
		width: 20px;
		height: 20px;
	}

	.ai-credits-offer-text {
		display: flex;
		flex-direction: column;
		gap: 2px;
		min-width: 0;
		flex: 1;
		line-height: 15px;
		margin-left: 4px;
		margin-right: 2px;
	}

	.ai-credits-offer-text strong {
		background: linear-gradient(90deg, #fe487d 0%, #9b0aff 100%);
		-webkit-background-clip: text;
		background-clip: text;
		color: transparent;
		-webkit-text-fill-color: transparent;
		font-size: 13px;
		font-weight: 700;
	}

	.ai-credits-offer-text small {
		color: #3A424D;
		font-size: 12px;
	}

	.ai-credits-offer-btn {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		align-self: center;
		gap: 3px;
		height: 26px;
		min-width: 64px;
		margin-left: auto;
		padding: 0 8px;
		border-radius: 999px;
		background: linear-gradient(90deg, #f75db9 0%, #a200fe 100%);
		background-size: 160% 100%;
		background-position: 0 0;
		color: #fff;
		font-size: 13px;
		font-weight: 600;
		line-height: 1;
		flex-shrink: 0;
		transition: box-shadow 0.2s ease, background-position 0.2s ease;
	}

	.ai-credits-offer-btn span {
		display: inline-flex;
		align-items: center;
		height: 12px;
		line-height: 12px;
	}

	.ai-credits-offer-btn svg {
		display: block;
		flex-shrink: 0;
		transform: translateY(-0.5px);
	}

	.ai-credits-offer:hover .ai-credits-offer-btn {
		background-position: 100% 0;
		box-shadow: 0 6px 14px rgba(162, 0, 254, 0.22);
	}

	.ai-feature-list {
		display: flex;
		flex-direction: column;
		gap: 20px;
		margin-bottom: 28px;
	}

	.ai-feature-item {
		display: flex;
		gap: 14px;
	}

	.ai-feature-icon {
		width: 30px;
		height: 30px;
		background: #f0fdf4;
		color: white;
		border-radius: 12px;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-shrink: 0;
	}

	.ai-feature-text h4 {
		font-size: 15px;
		font-weight: 600;
		margin: 0 0 4px 0;
	}

	.ai-feature-text p {
		font-size: 13px;
		color:  #666;
		margin: 0;
		line-height: 1.4;
	}

	.ai-install-btn {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 8px;
		width: 100%;
		padding: 14px;
		background: #20a53a;
		color: #fff !important;
		border-radius: 14px;
		font-weight: 600;
		font-size: 16px;
		text-decoration: none;
		transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
		box-shadow: 0 4px 12px rgba(32, 165, 58, 0.2);
	}

	.ai-install-btn:hover {
		background: #198c30;
		box-shadow: 0 6px 20px rgba(32, 165, 58, 0.3);
	}

	@media (max-width: 600px) {
		.ai-float-box {
			width: calc(100% - 40px);
			right: 20px;
			bottom: 20px;
			top: auto;
		}
	}

    .shimmer-text {
        background: linear-gradient(90deg, #1a1a1a 0%, #20a53a 25%, #1a1a1a 50%, #20a53a 75%, #1a1a1a 100%);
        background-size: 200% auto;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: shimmer 6s linear infinite;
    }

    @keyframes shimmer {
        100% {
            background-position: 200% center;
        }
    }

	@media only screen and (min-width: 951px) and (max-width: 1340px) {
		.head_box .sign {
			margin-right: 8px;
			font-size: 12px;
		}

		.head_box .sign a {
			height: 28px;
			line-height: 28px;
		}

		.head_box .sign .btn-line {
			height: 14px;
			margin: 0 6px;
		}

		.head_box .sign .admin-btn {
			height: 28px;
			line-height: 26px;
			padding: 0 12px;
			border-width: 1px;
			font-size: 12px;
			box-sizing: border-box;
		}

		.head_box .install-btn {
			height: 28px;
			line-height: 28px;
			padding: 0 10px;
			font-size: 12px;
		}
	}

	.i1.index {
		padding-bottom: 30px;
	}

	.aapanel-compare-section {
		background: #ffffff;
		color: #424251;
		line-height: 1.6;
		padding: 35px 20px 20px;
	}

	.aapanel-compare-title,
	.aapanel-compare-subtitle,
	.aapanel-compare-table-container,
	.aapanel-compare-cta,
	.software-stack-title,
	.software-stack-subtitle,
	.software-stack-table-wrap,
	.software-stack-more,
	.software-stack-stats {
		opacity: 1;
		transform: translateY(0);
	}

	.aapanel-compare-pending .aapanel-compare-title,
	.aapanel-compare-pending .aapanel-compare-subtitle,
	.aapanel-compare-pending .aapanel-compare-table-container,
	.aapanel-compare-pending .aapanel-compare-cta,
	.software-stack-pending .software-stack-title,
	.software-stack-pending .software-stack-subtitle,
	.software-stack-pending .software-stack-table-wrap,
	.software-stack-pending .software-stack-more,
	.software-stack-pending .software-stack-stats {
		opacity: 0;
		transform: translateY(18px);
	}

	.aapanel-compare-section.is-visible .aapanel-compare-title,
	.aapanel-compare-section.is-visible .aapanel-compare-subtitle,
	.aapanel-compare-section.is-visible .aapanel-compare-table-container,
	.aapanel-compare-section.is-visible .aapanel-compare-cta,
	.software-stack-section.is-visible .software-stack-title,
	.software-stack-section.is-visible .software-stack-subtitle,
	.software-stack-section.is-visible .software-stack-table-wrap,
	.software-stack-section.is-visible .software-stack-more,
	.software-stack-section.is-visible .software-stack-stats {
		animation: aapanelCompareFadeUp 0.6s ease both;
	}

	.aapanel-compare-section.is-visible .aapanel-compare-subtitle,
	.software-stack-section.is-visible .software-stack-subtitle {
		animation-delay: 0.08s;
	}

	.aapanel-compare-section.is-visible .aapanel-compare-table-container,
	.software-stack-section.is-visible .software-stack-table-wrap {
		animation-delay: 0.16s;
	}

	.aapanel-compare-section.is-visible .aapanel-compare-cta,
	.software-stack-section.is-visible .software-stack-more,
	.software-stack-section.is-visible .software-stack-stats {
		animation-delay: 0.24s;
	}

	@keyframes aapanelCompareFadeUp {
		from {
			opacity: 0;
			transform: translateY(18px);
		}

		to {
			opacity: 1;
			transform: translateY(0);
		}
	}

	.aapanel-compare-container {
		max-width: 940px;
		margin: 0 auto;
	}

	.aapanel-compare-title {
		text-align: center;
		font-size: 38px;
		line-height: 1.2;
		color: #162016;
		margin-bottom: 10px;
		font-weight: 700;
	}

	.aapanel-compare-subtitle {
		text-align: center;
		font-size: 18px;
		color: #666;
		margin-bottom: 26px;
	}

	.aapanel-compare-table-container {
		overflow-x: auto;
		margin-bottom: 24px;
		border: 1px solid #d8dee4;
		border-radius: 8px;
		box-shadow: 0 8px 24px rgba(22, 32, 22, 0.08);
	}

	.aapanel-compare-table {
		width: 100%;
		min-width: 760px;
		table-layout: fixed;
		border-collapse: separate;
		border-spacing: 0;
		background: #ffffff;
		border-radius: 8px;
		overflow: hidden;
		font-size: 15px;
		font-weight: 500;
	}

	.aapanel-compare-table thead {
		background: #20a53a;
		color: #ffffff;
	}

	.aapanel-compare-table thead th {
		padding: 14px 16px;
		font-size: 16px;
		font-weight: 600;
		text-align: center;
		border-right: 1px solid rgba(255, 255, 255, 0.16);
		border-bottom: 1px solid #d8dee4;
	}

	.aapanel-compare-table thead th:first-child {
		text-align: left;
		width: 24%;
	}

	.aapanel-compare-table thead th:last-child,
	.aapanel-compare-table tbody td:last-child {
		border-right: none;
	}

	.aapanel-compare-table tbody tr {
		transition: background-color 0.2s ease, color 0.2s ease;
	}

	.aapanel-compare-table tbody td {
		padding: 12px 16px;
		text-align: center;
		vertical-align: middle;
		border-right: 1px solid #dfe4e8;
		border-bottom: 1px solid #dfe4e8;
		font-size: 15px;
		font-weight: 500;
		line-height: 1.5;
	}

	.aapanel-compare-table tbody tr:last-child td {
		border-bottom: none;
	}

	.aapanel-compare-table tbody td:first-child {
		text-align: left;
		font-weight: 600;
		color: #555;
		background-color: #fbfbfb;
	}

	.aapanel-compare-table tbody td:nth-child(3) {
		color: #666;
		font-weight: 500;
	}

	.aapanel-compare-highlight {
		font-weight: 700;
		color: #20a53a;
		position: relative;
	}

	.aapanel-compare-table tbody .aapanel-compare-highlight {
		background-color: #eaf7ee;
		color: #20a53a;
		font-weight: 700;
	}

	.aapanel-compare-highlight div {
		color: #20a53a;
		font-weight: 700;
	}

	.aapanel-compare-highlight span {
		font-weight: 700;
	}

	.aapanel-compare-table thead .aapanel-compare-highlight {
		background: #20a53a;
		background-color: #20a53a;
		color: #ffffff;
	}

	.aapanel-compare-small {
		font-size: 15px;
		font-weight: 500;
		margin-top: 5px;
		color: #666;
		line-height: 1.5;
	}

	.aapanel-compare-highlight .aapanel-compare-small {
		color: #20a53a;
		font-weight: 700;
	}

	.aapanel-compare-danger {
		color: #dc3545;
		font-weight: 600;
	}

	.aapanel-compare-check {
		display: inline-flex;
		align-items: center;
		justify-content: flex-start;
		gap: 4px;
		color: #20a53a;
		font-weight: 700;
	}

	.aapanel-compare-success {
		color: #20a53a;
		font-weight: 700;
	}

	.aapanel-compare-check::before {
		content: '✓ ';
    font-size: 1.1rem;
    font-weight: bold;
	}

	.aapanel-compare-cross {
		display: inline-flex;
		align-items: center;
		justify-content: flex-start;
		gap: 4px;
		color: #dc3545;
		font-weight: 600;
	}

	.aapanel-compare-cross::before {
		content: '✗ ';
    font-size: 1.1rem;
    font-weight: bold;
	}

	.aapanel-compare-free {
		color: #20a53a;
		font-size: inherit;
		font-weight: inherit;
	}

	.aapanel-compare-paid {
		color: #666;
		font-size: inherit;
		font-weight: 500;
	}

	.aapanel-compare-badge {
		display: inline-block;
		padding: 4px 10px;
		background-color: #20a53a;
		color: #ffffff;
		border-radius: 6px;
		font-size: 11px;
		font-weight: 700;
		margin-left: 6px;
		text-transform: uppercase;
		letter-spacing: 0.3px;
		vertical-align: middle;
	}

	.aapanel-compare-cta {
		text-align: center;
		margin-top: 24px;
		padding: 24px 20px;
		border-radius: 12px;
	}

	.aapanel-use-cases {
		--use-case-brand: #20a53a;
		--use-case-brand-light: #f0fdf4;
		background: #fff;
		color: #1a1a1a;
		font-size: 15px;
		-webkit-font-smoothing: antialiased;
		text-rendering: optimizeLegibility;
	}

	.aapanel-use-cases .aapanel-compare-container {
		max-width: 1120px;
	}

	.aapanel-use-cases .aapanel-compare-subtitle:empty {
		display: block;
		min-height: 0;
		margin-bottom: 26px;
	}

	.aapanel-use-cases .aapanel-compare-table-container {
		border: 1px solid #d8dee4;
		border-radius: 8px;
		box-shadow: 0 8px 24px rgba(22, 32, 22, 0.08);
		overflow: hidden;
	}

	.aapanel-use-cases .aapanel-compare-table {
		min-width: 760px;
		border-collapse: collapse;
		border-radius: 0;
		color: #374151;
		font-size: 14px;
		table-layout: fixed;
	}

	.aapanel-use-cases .aapanel-compare-table thead {
		background: var(--use-case-brand);
	}

	.aapanel-use-cases .aapanel-compare-table thead th {
		padding: 14px 16px;
		border-right: none;
		border-bottom: none;
		color: #fff;
		font-size: 16px;
		font-weight: 600;
		letter-spacing: 0.05em;
		line-height: 1.4;
		text-align: left;
		text-transform: uppercase;
	}

	.aapanel-use-cases .aapanel-compare-table thead th:first-child {
		width: 33%;
	}

	.aapanel-use-cases .aapanel-compare-table thead th:nth-child(2) {
		width: 25%;
	}

	.aapanel-use-cases .aapanel-compare-table thead th:nth-child(3) {
		width: 42%;
	}

	.aapanel-use-cases .aapanel-compare-table tbody tr {
		transition: background-color 0.2s ease;
	}

	.aapanel-use-cases .aapanel-compare-table tbody tr:hover td {
		background-color: var(--use-case-brand-light);
	}

	.aapanel-use-cases .aapanel-compare-table tbody td {
		padding: 16px 16px;
		border-right: none;
		border-bottom: 1px solid #f0f0f0;
		background: #fff;
		color: #374151;
		font-size: 14px;
		font-weight: 400;
		line-height: 1.45;
		text-align: left;
		vertical-align: middle;
		transition: background-color 0.2s ease;
	}

	.aapanel-use-cases .aapanel-compare-table tbody tr:last-child td {
		border-bottom: none;
	}

	.aapanel-use-cases .aapanel-compare-table tbody td:first-child {
		background: #fff;
		color: #0f172a;
		font-size: 15px;
		font-weight: 700;
		letter-spacing: 0;
		line-height: 1.4;
		overflow-wrap: break-word;
	}

	.aapanel-use-cases .aapanel-compare-table tbody tr:hover td:first-child {
		background-color: var(--use-case-brand-light);
	}

	.aapanel-use-cases .aapanel-compare-table tbody td:nth-child(3) {
		color: #374151;
	}

	.aapanel-use-cases .target-users-list {
		font-size: 14px;
		line-height: 1.4;
	}

	.aapanel-use-cases .selling-points-list {
		font-size: 14px;
		line-height: 1.3;
	}

	.aapanel-use-cases .check-item {
		display: flex;
		align-items: flex-start;
		position: relative;
		margin-bottom: 4px;
		color: #374151;
	}

	.aapanel-use-cases .check-item:last-child {
		margin-bottom: 0;
	}

	.aapanel-use-cases .check-item::before {
		content: "\2713";
		display: inline-flex;
		flex: 0 0 16px;
		width: 16px;
		margin-top: 1px;
		margin-right: 8px;
		color: var(--use-case-brand);
		font-weight: 700;
		line-height: 1;
	}

	.aapanel-use-cases .aapanel-compare-cta {
		margin-top: 24px;
		border-radius: 0;
	}

	.aapanel-use-cases + .i2 .i2a:first-child,
	.software-stack-section + .i2 .i2a:first-child {
		margin-top: 70px;
		padding-top: 0;
	}

	@media (prefers-reduced-motion: reduce) {
		.aapanel-compare-title,
		.aapanel-compare-subtitle,
		.aapanel-compare-table-container,
		.aapanel-compare-cta,
		.software-stack-title,
		.software-stack-subtitle,
		.software-stack-table-wrap,
		.software-stack-more,
		.software-stack-stats {
			animation: none;
		}
	}

	@media (max-width: 768px) {
		.aapanel-compare-section {
			padding: 25px 15px 15px;
		}

		.aapanel-compare-title {
			font-size: 32px;
		}

		.aapanel-compare-table thead th {
			padding: 15px 10px;
			font-size: 16px;
		}

		.aapanel-compare-table tbody td {
			padding: 14px 10px;
			font-size: 14px;
		}

		.aapanel-compare-small {
			font-size: 14px;
		}

	}

	@media (max-width: 480px) {
		.aapanel-compare-title {
			font-size: 26px;
		}

		.aapanel-compare-subtitle {
			font-size: 16px;
		}

		.aapanel-compare-table thead th:first-child {
			width: 160px;
		}

		.aapanel-compare-table thead th {
			padding: 12px 8px;
			font-size: 14px;
		}

		.aapanel-compare-table tbody td {
			padding: 12px 8px;
			font-size: 13px;
		}

		.aapanel-compare-small {
			font-size: 13px;
		}

		.aapanel-compare-badge {
			font-size: 10px;
			padding: 3px 8px;
		}
	}

	@media (max-width: 768px) {
		.aapanel-use-cases .aapanel-compare-table {
			min-width: 0;
			display: block;
		}

		.aapanel-use-cases .aapanel-compare-table thead {
			display: none;
		}

		.aapanel-use-cases .aapanel-compare-table tbody,
		.aapanel-use-cases .aapanel-compare-table tbody tr {
			display: block;
			width: 100%;
		}

		.aapanel-use-cases .aapanel-compare-table tbody tr {
			border-bottom: 6px solid #f9fafb;
		}

		.aapanel-use-cases .aapanel-compare-table tbody tr:last-child {
			border-bottom: none;
		}

		.aapanel-use-cases .aapanel-compare-table tbody td {
			display: flex;
			align-items: center;
			justify-content: space-between;
			gap: 12px;
			width: 100%;
			padding: 12px 14px;
			border-bottom: 1px solid #f3f4f6;
			font-size: 13px;
			text-align: right;
		}

		.aapanel-use-cases .aapanel-compare-table tbody td::before {
			content: attr(data-label);
			flex: 0 0 auto;
			margin-right: 8px;
			color: #6b7280;
			font-weight: 600;
			text-align: left;
			white-space: nowrap;
		}

		.aapanel-use-cases .aapanel-compare-table tbody td:nth-child(3) {
			align-items: flex-start;
		}

		.aapanel-use-cases .target-users-list,
		.aapanel-use-cases .selling-points-list {
			display: flex;
			flex-direction: column;
			align-items: flex-end;
		}

		.aapanel-use-cases .check-item {
			text-align: right;
		}

		.aapanel-use-cases .aapanel-compare-cta {
			margin-top: 24px;
		}

		.aapanel-use-cases .aapanel-compare-cta a {
			width: 100%;
			min-height: 50px;
			padding: 0 18px;
			font-size: 15px;
		}
	}

	.software-stack-section {
		background: #ffffff;
		color: #424251;
		padding: 35px 20px 20px;
	}

	.software-stack-container {
		width: 1200px;
		max-width: 100%;
		margin: 0 auto;
	}

	.software-stack-title {
		margin: 0 0 10px;
		text-align: center;
		color: #162016;
		font-size: 38px;
		font-weight: 700;
		line-height: 1.2;
	}

	.software-stack-subtitle {
		margin: 0 0 8px;
		text-align: center;
		color: #666666;
		font-size: 17px;
		line-height: 1.5;
	}

	.software-stack-table-wrap {
		margin-top: 32px;
		overflow-x: auto;
		border: 1px solid #d8dee4;
		border-radius: 8px;
		box-shadow: 0 8px 24px rgba(22, 32, 22, 0.08);
	}

	.software-stack-table {
		width: 100%;
		min-width: 900px;
		table-layout: fixed;
		border-collapse: separate;
		border-spacing: 0;
		background: #ffffff;
		border-radius: 8px;
		overflow: hidden;
	}

	.software-stack-table thead {
		background: #20a53a;
		color: #ffffff;
	}

	.software-stack-table th {
		padding: 14px 16px;
		text-align: left;
		vertical-align: middle;
		font-size: 17px;
		font-weight: 700;
		border-right: 1px solid rgba(255, 255, 255, 0.16);
		border-bottom: 1px solid #d8dee4;
	}

	.software-stack-table th:last-child,
	.software-stack-table td:last-child {
		border-right: none;
	}

	.software-stack-table th:first-child,
	.software-stack-table td:first-child {
		width: 15%;
	}

	.software-stack-table th:nth-child(2),
	.software-stack-table td:nth-child(2) {
		width: 20%;
	}

	.software-stack-table th:nth-child(3),
	.software-stack-table td:nth-child(3) {
		width: 65%;
	}

	.software-stack-table tbody tr {
		transition: background-color 0.2s ease, color 0.2s ease;
	}

	.software-stack-table tbody tr:hover {
		background: #f5fbf7;
	}

	.software-stack-table td {
		padding: 10px 12px;
		vertical-align: middle;
		border-right: 1px solid #dfe4e8;
		border-bottom: 1px solid #dfe4e8;
	}

	.software-stack-table tbody tr:last-child td {
		border-bottom: none;
	}

	.software-stack-preview .software-stack-table tbody tr:nth-child(n+7) {
		display: none;
	}

	.software-stack-preview .software-stack-table tbody tr:nth-child(6) td {
		border-bottom: none;
	}

	.software-stack-category {
		background: #fbfbfb;
		color: #20a53a;
		font-size: 15px;
		font-weight: 600;
		padding-left: 16px !important;
		padding-right: 16px !important;
	}

	.software-stack-features {
		background: #eaf7ee;
		border-left: 3px solid #20a53a;
		color: #555555;
		font-size: 15px;
		font-weight: 500;
		padding-left: 12px !important;
		padding-right: 12px !important;
	}

	.software-stack-feature-tag {
		display: inline-block;
		margin: 3px 4px 3px 0;
		padding: 5px 11px;
		border-radius: 6px;
		background: #20a53a;
		color: #ffffff;
		font-size: 13px;
		font-weight: 600;
		line-height: 1.3;
	}

	.software-stack-grid {
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(220px, 242px));
		align-items: center;
		justify-content: start;
		gap: 10px 14px;
	}

	.software-stack-item {
		display: flex;
		align-items: center;
		min-width: 0;
		padding: 8px 10px;
		border: 1px solid #dfe4e8;
		border-radius: 8px;
		background: #ffffff;
		transition: border-color 0.3s ease, box-shadow 0.3s ease;
	}

	.software-stack-item:hover {
		border-color: #20a53a;
		box-shadow: 0 4px 12px rgba(32, 165, 58, 0.14);
	}

	.software-stack-logo {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 30px;
		height: 30px;
		margin-right: 10px;
		border-radius: 6px;
		background: #eaf7ee;
		color: #20a53a;
		font-size: 11px;
		font-weight: 700;
		line-height: 1;
		flex-shrink: 0;
	}

	.software-stack-logo img,
	.software-stack-logo svg {
		display: block;
		max-width: 22px;
		max-height: 22px;
	}

	.software-stack-logo svg {
		width: 20px;
		height: 20px;
		fill: none;
		stroke: currentColor;
		stroke-width: 2;
		stroke-linecap: round;
		stroke-linejoin: round;
	}

	.software-stack-info {
		flex: 1;
		display: flex;
		flex-direction: column;
		gap: 3px;
		min-width: 0;
	}

	.software-stack-name {
		color: #162016;
		font-size: 14px;
		font-weight: 600;
		line-height: 1.25;
		white-space: nowrap;
	}

	.software-stack-versions {
		color: #666666;
		font-size: 13px;
		line-height: 1.25;
	}

	.software-stack-stats {
		display: flex;
		justify-content: center;
		align-items: stretch;
		position: relative;
		gap: 0;
		margin-top: 40px;
		padding: 15px;
		background: #ffffff;
		color: #ffffff;
		box-shadow: 0 8px 18px rgba(22, 32, 22, 0.09);
	}

	.software-stack-stat {
		position: relative;
		z-index: 1;
		flex: 0 0 220px;
		padding: 26px 24px;
		text-align: center;
	}

	.software-stack-stats::before {
		content: "";
		position: absolute;
		inset: 15px;
		z-index: 0;
		border-radius: 7px;
		background: #20a53a;
	}

	.software-stack-stat + .software-stack-stat {
		border-left: none;
	}

	.software-stack-stat + .software-stack-stat::before {
		content: "";
		position: absolute;
		top: 50%;
		left: 0;
		width: 1px;
		height: 55px;
		background: rgba(0, 0, 0, 0.3);
		transform: translateY(-50%);
	}

	.software-stack-stat-number {
		display: inline-block;
		margin-bottom: 12px;
		color: #ffffff;
		font-size: 32px;
		font-weight: 700;
		line-height: 1.1;
	}

	.software-stack-stat-label {
		color: #ffffff;
		font-size: 16px;
		font-weight: 500;
		line-height: 1.35;
	}

	.software-stack-more {
		margin-top: 26px;
		text-align: center;
	}

	@media (max-width: 768px) {
		.software-stack-section {
			padding: 25px 15px 15px;
		}

		.software-stack-title {
			font-size: 30px;
		}

		.software-stack-subtitle {
			font-size: 15px;
		}

		.software-stack-grid {
			grid-template-columns: 1fr;
		}

		.software-stack-item {
			width: 100%;
		}

		.software-stack-stats {
			flex-direction: column;
			gap: 0;
			padding: 15px;
		}

		.software-stack-stat {
			flex: none;
			width: 100%;
			padding: 20px 14px;
		}

		.software-stack-stat + .software-stack-stat {
			border-top: 1px solid rgba(0, 0, 0, 0.3);
			border-left: none;
		}

		.software-stack-stat + .software-stack-stat::before {
			display: none;
		}
	}

	@media (max-width: 480px) {
		.software-stack-title {
			font-size: 26px;
		}

		.software-stack-stat-number {
			font-size: 28px;
		}
	}
