.hero-section {
    background: radial-gradient(circle at top right, #2d2d0d, #3e370a);
    padding: 80px 20px;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-container {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 60px;
	max-width: 1365px;
	margin: 0 auto;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-content h1 span {
    color: #d4af37; 
}

.hero-content p {
    font-size: 1.1rem;
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 550px;
}

.btn-group {
    display: flex;
    gap: 15px;
}

.btn-gold {
    background: #ccac43;
    color: #1a1a10;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s ease;
}

.btn-gold:hover {
    background: #e5c14d;
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid #717150;
    color: white;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #ffffff1a;
}

.vps-feature-card {
    background: #ffffff08;
    border: 1px solid #d4af374d;
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(8px);
    box-shadow: 0 0 30px #0000004d;
    position: relative;
}

.vps-feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    box-shadow: inset 0 0 15px #d4af371a;
    pointer-events: none;
}

.feature-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #ffffff14;
}

.feature-item:last-child {
    border-bottom: none;
}

.label {
    color: #9ca3af; 
    font-size: 0.95rem; 
}
.value {
    color: #d4af37; 
    font-weight: 700; 
    font-size: 1.1rem; 
}

.starting-price {
    text-align: right;
    margin-top: 20px;
}

.starting-price span {
    display: block;
    font-size: 0.8rem;
    color: #9ca3af;
}

.price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #d4af37;
}

.pricing-card {
	background: #fff;
	border: 1px solid #ffffff1a;
	border-radius: 24px;
	padding: 40px;
	text-align: center;
	color: white;
	box-shadow: 0 25px 50px -12px #00000080;
	transition: .3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: #fbbf24;
}

.pricing .badge {
	background: #fbbf24;
	color: #000;
	font-weight: bold;
	padding: 6px 16px;
	border-radius: 50px;
	font-size: 14px;
	display: inline-block;
	margin-bottom: 20px;
}

.promo {
	color: #0f7f38;
	font-size: 14px;
	margin-bottom: 10px;
	font-weight: 500;
}

.price-container {
    margin-bottom: 30px;
}

.regular-price {
	text-decoration: line-through;
	color: #6a788d;
	font-size: 18px;
}

.current-price {
	font-size: 48px;
	font-weight: 800;
	margin: 5px 0;
	color: #373737;
}

.current-price span {
	font-size: 18px;
	color: #4d607a;
	font-weight: 400;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

.features-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #28313c;
}

.features-list li::before {
    content: '✓';
    color: #fbbf24;
    font-weight: bold;
    margin-right: 12px;
    background: rgba(251, 191, 36, 0.1);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
}

.order-btn {
    background: #fbbf24;
    color: #000;
    border: none;
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.order-btn:hover {
    background: #f59e0b;
}

.coupon-box {
	border: 1px dashed #fb0606;
	padding: 5px;
	border-radius: 8px;
	margin-top: 10px;
	font-size: 13px;
	color: #2a2a2a;
}

@media (max-width: 739px) {
    .hero-container{
        grid-template-columns: 1fr;
    }
}

@media (max-width: 500px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
}