/* Legacy pricing styles */
div.product-block-container{
	text-align:center;
}

div.product-block{
	display:block;
	text-align:center;
	margin-right:30px;
	margin-left:30px;
	
}

div.product-block div.features{
	text-align:center;
	background-color:#606060;
	width:100%;
	height:166px;
	color:#fff;
	margin-top:20px;
	padding-top:20px;
	padding-bottom:20px;
	line-height:28px;
}

div.product-block div.block-type{
	color:#5F90AF;
	font-size:16px;
}

div.product-block span.features-title{
	color:#5F90AF;
}

div.product-block div.nodelocked-message{
	font-size:12px;
	margin-top:10px;
}

div.product-block div.price{
	color:#ccc;
	font-size:22px;
	margin-top:15px;
}	


div.connections{
	text-align:center;
}

div.connections-list{
	margin-top:20px;
}

div.connection{
	float:left;
	padding-top:10px;
	padding-bottom:10px;
	padding-left:10px;
	padding-right:10px;
	margin-left:100px;
	cursor:pointer;
	
}

div.connection:hover{
	background-color:#777;
}

div.connection:nth-of-type(2n){
	width:auto;
	float:right;
	margin-right:100px;
}

div.connection div.name{
	display:table-cell;
	width:140px;
	cursor:pointer;
	text-align:left;
}
div.connection div.price{
	display:table-cell;
	width:200px;
	cursor:pointer;
	text-align:right;
}
div.connection div.checkbox{
	text-align:right;
	display:table-cell;
	vertical-align:middle;
	height:100%;
	cursor:pointer;
	padding-right:10px;
}

div.connection div.checkbox input[type="checkbox"]{
	height:16px;
	width:16px;
	background-color:#606060;
	color:#fff;
}

input[type="submit"].buy-now-button{
	background-color:#5F90AF;
	color:#444;
	font-size:18px;
	padding:8px;
	padding-left:30px;
	padding-right:30px;
	font-weight:bold;
	margin-top:10px;
}

input[type="submit"].buy-now-button:hover{
	color:#fff;
	background-color:#5F90AF;
}

div.education div.block-type{
	color:#ccc;
}

div.education div.button.buy-now-button{
	background-color:#29ABE1;
}

/* New modern pricing card styles */
.pricing-note {
    text-align: center;
    font-size: 1rem;
    color: #b0b0b0;
    margin: 0 0 1.5rem;
	padding-top:20px; 	
}

.pricing-note strong {
    color: #ffffff;
}

.pricing-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 1rem 2rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    background-color: #333333;
}

.pricing-card {
    background: #2a2a2a;
    border: 1px solid #3a3a3a;
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: #4a4a4a;
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #3a3a3a;
}

.product-name {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.pro {
    color: #3b82f6;
    display: block;
}

.automotive {
    color: #f59e0b;
    display: block;
}

.license-type {
    font-size: 1rem;
    color: #b0b0b0;
    margin-bottom: 0.25rem;
    font-weight: bold;
}

.user-type {
    font-size: 0.875rem;
    color: #808080;
}

.pricing {
    text-align: center;
    margin-bottom: 2rem;
}

.price {
    font-size: 3.5rem;
    font-weight: bold;
    color: #ffffff;
    line-height: 1;
}

.period {
    font-size: 1.25rem;
    color: #b0b0b0;
    display: block;
    margin-top: 0.5rem;
}

.cta-button {
    width: auto;
    padding: 1rem;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 2rem;
    text-decoration: none;
    display: block;
    text-align: center;
}

.cta-button:hover {
    background: #2563eb;
    transform: scale(1.02);
}

.cta-button.automotive {
    background: #f59e0b;
}

.cta-button.automotive:hover {
    background: #d97706;
}

.features-list {
    list-style: none;
    margin-bottom: 1.5rem;
    padding-left: 0;
    min-height: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.features-list li {
    padding: 0.3rem 0;
    font-size: 0.875rem;
    font-weight: bold;
    color: #b0b0b0;
}

.plugin-title {
    font-size: 0.875rem;
    font-weight: bold;
    color: #b0b0b0;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.plugin-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.25rem 0.5rem;
    margin-bottom: 0;
    padding-left: 0;
}

.plugin-list + .plugin-list {
    margin-top: 0.25rem;
}

.plugin-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #909090;
    padding: 0.1rem 0;
}

.plugin-list li::before {
    content: "✓";
    color: #3b82f6;
    font-weight: bold;
    font-size: 1rem;
    flex-shrink: 0;
}

.plugin-list.automotive-plugins li::before {
    color: #f59e0b;
}

.plugin-list.automotive-plugins li {
    color: #ffffff;
    font-weight: bold;
}

.compatibility-banner {
    background: #3a3a3a;
    border: 1px solid #4a4a4a;
    padding: 0.875rem;
    text-align: center;
    margin: 0 auto;
    max-width: 800px;
    border-radius: 8px;
    font-weight: 500;
    color: #e5e5e5;
}

.compatibility-banner a {
    color: #3b82f6;
    text-decoration: underline;
    font-weight: bold;
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1800px;
    margin: 4rem auto 2rem;
    padding: 0 2rem;
}

.education-card {
    background: #222222;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #3a3a3a;
}

.education-card h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.education-card p {
    color: #b0b0b0;
    margin-bottom: 1.5rem;
}

.education-link {
    display: inline-block;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.education-link:hover {
    color: #60a5fa;
}

@media (max-width: 768px) {
    .pricing-container {
        grid-template-columns: 1fr;
    }
}