.pricing-hero {
    padding: 150px 0 80px;
    background: #000;
    text-align: center;
}

.pricing-main-title {
    font-family: var(--font-main);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    margin-top: 15px;
}

.pricing-grid-section {
    padding-bottom: 120px;
    background: #000;
}

.pricing-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
}

/* CARDS STYLE */
.price-card {
    background: #080808;
    border: 1px solid #1a1a1a;
    padding: 50px 40px;
    position: relative;
    transition: all 0.4s ease;
}

.price-card.featured {
    border: 1px solid var(--gold);
    background: #0c0c0c;
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 20px 50px rgba(255, 208, 0, 0.1);
}

.featured-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--gold);
    color: #000;
    font-family: var(--font-main);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 20px;
    letter-spacing: 2px;
}

.price-header {
    text-align: center;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.plan-name {
    font-family: var(--font-main);
    color: #888;
    letter-spacing: 3px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
}

.price-value {
    font-family: var(--font-main);
    color: var(--white);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
}

.price-value span {
    font-size: 1rem;
    color: #444;
    margin-left: 5px;
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.price-features li {
    color: #ccc;
    margin-bottom: 15px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-features li i {
    color: var(--gold);
    font-size: 0.8rem;
}

.price-features li.disabled {
    color: #333;
    text-decoration: line-through;
}

.price-features li.disabled i {
    color: #333;
}

.btn-price, .btn-price-gold {
    display: block;
    text-align: center;
    padding: 20px;
    font-family: var(--font-main);
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    transition: var(--smooth);
}

.btn-price {
    border: 1px solid #333;
    color: var(--white);
}

.btn-price-gold {
    background: var(--gold);
    color: #000;
}

.btn-price:hover {
    background: var(--white);
    color: #000;
}

.divisions-section {
    padding: 100px 0;
    background: #000;
    border-top: 1px solid #111;
}

.divisions-header {
    text-align: center;
    margin-bottom: 60px;
}

.divisions-title {
    font-family: var(--font-main);
    font-size: 2.5rem;
    color: var(--white);
    letter-spacing: 2px;
}

.divisions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.division-card {
    background: #080808;
    border: 1px solid #1a1a1a;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: var(--smooth);
}

.div-img-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.div-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) brightness(0.6);
    transition: 0.6s ease;
}

.division-card:hover .div-img-wrapper img {
    filter: grayscale(0) brightness(0.9);
    transform: scale(1.1);
}

.div-content {
    padding: 40px;
}

.div-content h3 {
    font-family: var(--font-main);
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.div-content p {
    color: #777;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1rem;
}

.div-link {
    font-family: var(--font-main);
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    transition: 0.3s;
}

.div-link:hover {
    color: var(--white);
    padding-left: 10px;
}