/* ============================================
   PRICING SECTION
============================================ */
#PelixArmor-pricing {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    min-height: 100vh;
}

/* ============================================
   DISCOUNT BANNER
============================================ */
.pricing-discount-banner {
    position: relative;
    padding: 30px 40px;
    margin: 0 auto 40px;
    border-radius: 20px;
    overflow: hidden;
    z-index: 10;
    max-width: 1000px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.pricing-discount-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.discount-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.discount-info {
    flex: 1;
}

.discount-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 25px;
    margin-bottom: 15px;
}

.discount-badge svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

.discount-badge span {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.discount-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #050a12;
    margin-bottom: 10px;
    line-height: 1.2;
}

.discount-description {
    font-size: 15px;
    color: rgba(5, 10, 18, 0.85);
    margin: 0;
    line-height: 1.5;
    font-weight: 500;
}

.discount-action-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
    min-width: 300px;
}

.discount-input-group {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.2);
    padding: 6px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.discount-input-group:focus-within {
    border-color: #22B5FC;
    box-shadow: 0 0 15px rgba(201, 162, 39, 0.2);
}

.discount-input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    padding: 8px 12px;
    width: 140px;
    letter-spacing: 1px;
}

.discount-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    letter-spacing: 0;
}

.discount-input.input-error {
    color: #ff4d4d;
}

.apply-discount-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #22B5FC;
    color: #050a12;
    border: none;
    border-radius: 8px;
    font-family: 'Exo 2', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.apply-discount-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.4);
    background: #d4ac2b;
}

.apply-discount-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

@keyframes shake {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    50% {
        transform: translateX(5px);
    }

    75% {
        transform: translateX(-5px);
    }

    100% {
        transform: translateX(0);
    }
}

.shake-animation {
    animation: shake 0.4s ease-in-out;
    border-color: #ff4d4d !important;
}

/* Applied Discount Banner */
.discount-applied-banner {
    max-width: 1000px;
    margin: 0 auto 40px;
    background: radial-gradient(circle at center, rgba(201, 162, 39, 0.15) 0%, rgba(5, 10, 18, 0.4) 100%);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 16px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.discount-applied-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a227' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.applied-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.applied-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.2);
    border-radius: 50%;
    border: 1px solid rgba(201, 162, 39, 0.4);
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.2);
}

.applied-icon svg {
    width: 24px;
    height: 24px;
    fill: #22B5FC;
}

.applied-text {
    text-align: left;
}

.applied-text h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    text-shadow: 0 0 10px rgba(201, 162, 39, 0.3);
}

.applied-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Countdown Timer */
.countdown-timer {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.countdown-boxes {
    display: flex;
    align-items: center;
    gap: 8px;
}

.countdown-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 12px;
    background: rgba(5, 10, 18, 0.9);
    border-radius: 8px;
    min-width: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.countdown-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.countdown-unit {
    font-size: 9px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.countdown-separator {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: rgba(5, 10, 18, 0.5);
    margin-top: -15px;
}

/* Discount Banner Responsive */
@media (max-width: 992px) {
    .pricing-discount-banner {
        padding: 30px 20px;
        margin-left: 20px;
        margin-right: 20px;
    }

    .discount-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .discount-action-section {
        align-items: center;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .discount-title {
        font-size: 22px;
    }

    .applied-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .applied-text {
        text-align: center;
    }

    .countdown-box {
        padding: 6px 8px;
        min-width: 40px;
    }

    .countdown-value {
        font-size: 16px;
    }
}

/* Background */
.pricing-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.pricing-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201, 162, 39, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 60% at 100% 100%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
        var(--PelixArmor-navy-deep);
    /* Updated var name */
}

.pricing-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(201, 162, 39, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 162, 39, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(0, 0, 0, 0.4) 0%, transparent 70%);
}

/* Floating elements */
.pricing-float {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(201, 162, 39, 0.1);
    animation: floatRotate 25s linear infinite;
}

.pricing-float-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.pricing-float-2 {
    width: 300px;
    height: 300px;
    bottom: 10%;
    left: -80px;
    animation-delay: -10s;
}

@keyframes floatRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Container */
.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 10;
}

/* Section Header */
.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 30px;
    margin-bottom: 20px;
}

.pricing-badge svg {
    width: 16px;
    height: 16px;
    fill: var(--PelixArmor-gold-primary);
}

.pricing-badge span {
    font-family: 'Exo 2', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--PelixArmor-gold-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pricing-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--PelixArmor-white);
    margin-bottom: 15px;
}

.pricing-title span {
    background: var(--PelixArmor-gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-subtitle {
    font-size: 18px;
    color: var(--PelixArmor-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   SERVICE TABS (NEW)
============================================ */
.service-tabs-container {
    margin-bottom: 60px;
    padding: 0 20px;
}

.service-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.service-tab-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 30px;
    background: rgba(26, 42, 66, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
}

.service-tab-btn:hover {
    background: rgba(26, 42, 66, 0.8);
    border-color: rgba(201, 162, 39, 0.3);
    transform: translateY(-2px);
}

.service-tab-btn.active {
    background: rgba(201, 162, 39, 0.1);
    border-color: var(--PelixArmor-gold-primary);
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.1);
}

.service-tab-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-tab-btn.active .service-tab-icon {
    background: var(--PelixArmor-gold-primary);
}

.service-tab-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--PelixArmor-gray-light);
    transition: all 0.3s ease;
}

.service-tab-btn.active .service-tab-icon svg {
    fill: var(--PelixArmor-navy-deep);
}

.service-tab-label {
    font-family: 'Exo 2', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--PelixArmor-gray-light);
    text-transform: uppercase;
}

.service-tab-btn.active .service-tab-label {
    color: var(--PelixArmor-white);
}

/* ============================================
   VEHICLE TABS
============================================ */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.pricing-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(26, 42, 66, 0.5);
    border: 2px solid rgba(201, 162, 39, 0.15);
    border-radius: 12px;
    font-family: 'Exo 2', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--PelixArmor-gray-light);
    cursor: pointer;
    transition: var(--PelixArmor-transition-medium);
}

.pricing-tab svg {
    width: 24px;
    height: 24px;
    fill: var(--PelixArmor-gray);
    transition: var(--PelixArmor-transition-fast);
}

.pricing-tab:hover {
    border-color: rgba(201, 162, 39, 0.4);
    background: rgba(26, 42, 66, 0.8);
}

.pricing-tab.active {
    background: rgba(201, 162, 39, 0.15);
    border-color: var(--PelixArmor-gold-primary);
    color: var(--PelixArmor-white);
}

.pricing-tab.active svg {
    fill: var(--PelixArmor-gold-primary);
}

/* Pricing Cards Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

/* Pricing Card */
.pricing-card {
    position: relative;
    background: linear-gradient(145deg, rgba(18, 29, 47, 0.8), rgba(10, 22, 40, 0.9));
    border: 1px solid rgba(201, 162, 39, 0.1);
    border-radius: 24px;
    padding: 40px 35px;
    transition: var(--PelixArmor-transition-medium);
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.3), transparent);
    opacity: 0;
    transition: var(--PelixArmor-transition-medium);
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(201, 162, 39, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.pricing-card:hover::before {
    opacity: 1;
}

/* Popular Card */
.pricing-card.popular {
    border-color: var(--PelixArmor-gold-primary);
    background: linear-gradient(145deg, rgba(201, 162, 39, 0.1), rgba(10, 22, 40, 0.95));
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.popular::before {
    opacity: 1;
    background: var(--PelixArmor-gradient-gold);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 14px;
    background: var(--PelixArmor-gradient-gold);
    border-radius: 20px;
    font-family: 'Exo 2', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: var(--PelixArmor-navy-deep);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Card Header */
.card-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15), rgba(201, 162, 39, 0.05));
    border-radius: 20px;
    margin-bottom: 25px;
    transition: var(--PelixArmor-transition-medium);
}

.pricing-card:hover .card-icon {
    background: var(--PelixArmor-gradient-gold);
}

.pricing-card.popular .card-icon {
    background: var(--PelixArmor-gradient-gold);
}

.card-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--PelixArmor-gold-primary);
    transition: var(--PelixArmor-transition-fast);
}

.pricing-card:hover .card-icon svg,
.pricing-card.popular .card-icon svg {
    fill: var(--PelixArmor-navy-deep);
}

.card-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--PelixArmor-white);
    margin-bottom: 8px;
}

.card-desc {
    font-size: 14px;
    color: var(--PelixArmor-gray);
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Price */
.card-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 8px;
}

.price-currency {
    font-size: 20px;
    font-weight: 600;
    color: var(--PelixArmor-gold-primary);
}

.price-amount {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--PelixArmor-white);
    line-height: 1;
}

.price-suffix {
    font-size: 16px;
    color: var(--PelixArmor-gray);
}

.price-note {
    font-size: 13px;
    color: var(--PelixArmor-cyan);
    margin-bottom: 30px;
}

/* Features List */
.card-features {
    list-style: none;
    margin-bottom: 30px;
}

.card-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(201, 162, 39, 0.08);
    font-size: 14px;
    color: var(--PelixArmor-gray-light);
}

.card-features li:last-child {
    border-bottom: none;
}

.card-features li svg {
    width: 18px;
    height: 18px;
    fill: var(--PelixArmor-cyan);
    flex-shrink: 0;
    margin-top: 2px;
}

.card-features li.disabled {
    color: var(--PelixArmor-gray-dark);
}

.card-features li.disabled svg {
    fill: var(--PelixArmor-gray-dark);
}

/* Card Button */
.card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: transparent;
    border: 2px solid rgba(201, 162, 39, 0.3);
    border-radius: 12px;
    font-family: 'Exo 2', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--PelixArmor-gold-primary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--PelixArmor-transition-medium);
}

.card-btn svg {
    width: 18px;
    height: 18px;
    fill: var(--PelixArmor-gold-primary);
    transition: var(--PelixArmor-transition-fast);
}

.card-btn:hover {
    background: var(--PelixArmor-gradient-gold);
    border-color: var(--PelixArmor-gold-primary);
    color: var(--PelixArmor-navy-deep);
}

.card-btn:hover svg {
    fill: var(--PelixArmor-navy-deep);
}

.pricing-card.popular .card-btn {
    background: var(--PelixArmor-gradient-gold);
    border-color: var(--PelixArmor-gold-primary);
    color: var(--PelixArmor-navy-deep);
}

.pricing-card.popular .card-btn svg {
    fill: var(--PelixArmor-navy-deep);
}

.pricing-card.popular .card-btn:hover {
    box-shadow: var(--PelixArmor-shadow-gold);
    transform: translateY(-2px);
}

/* ============================================
   SERVICES COMPARISON TABLE
============================================ */
.comparison-section {
    margin-top: 40px;
}

.comparison-header {
    text-align: center;
    margin-bottom: 40px;
}

.comparison-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--PelixArmor-white);
    margin-bottom: 10px;
}

.comparison-subtitle {
    font-size: 15px;
    color: var(--PelixArmor-gray);
}

.comparison-table-wrapper {
    background: linear-gradient(145deg, rgba(18, 29, 47, 0.6), rgba(10, 22, 40, 0.8));
    border: 1px solid rgba(201, 162, 39, 0.1);
    border-radius: 20px;
    overflow: hidden;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table thead {
    background: rgba(201, 162, 39, 0.1);
}

.comparison-table th {
    padding: 20px 15px;
    font-family: 'Exo 2', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--PelixArmor-gold-primary);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(201, 162, 39, 0.15);
}

.comparison-table th:first-child {
    text-align: left;
    padding-left: 30px;
}

.comparison-table td {
    padding: 18px 15px;
    font-size: 14px;
    color: var(--PelixArmor-gray-light);
    text-align: center;
    border-bottom: 1px solid rgba(201, 162, 39, 0.05);
}

.comparison-table td:first-child {
    text-align: left;
    padding-left: 30px;
    font-weight: 500;
}

.comparison-table tbody tr:hover {
    background: rgba(201, 162, 39, 0.03);
}

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

.table-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(0, 212, 255, 0.15);
    border-radius: 50%;
}

.table-check svg {
    width: 14px;
    height: 14px;
    fill: var(--PelixArmor-cyan);
}

.table-x {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255, 100, 100, 0.1);
    border-radius: 50%;
}

.table-x svg {
    width: 12px;
    height: 12px;
    fill: #ff6464;
}

.table-price {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    color: var(--PelixArmor-white);
}

/* ============================================
   FAQ SECTION
============================================ */
.pricing-faq {
    margin-top: 80px;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--PelixArmor-white);
    margin-bottom: 10px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.faq-item {
    background: linear-gradient(145deg, rgba(18, 29, 47, 0.6), rgba(10, 22, 40, 0.8));
    border: 1px solid rgba(201, 162, 39, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--PelixArmor-transition-medium);
}

.faq-item:hover {
    border-color: rgba(201, 162, 39, 0.3);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    cursor: pointer;
    transition: var(--PelixArmor-transition-fast);
}

.faq-question:hover {
    background: rgba(201, 162, 39, 0.05);
}

.faq-question h4 {
    font-family: 'Exo 2', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--PelixArmor-white);
}

.faq-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 8px;
    transition: var(--PelixArmor-transition-medium);
}

.faq-icon svg {
    width: 14px;
    height: 14px;
    fill: var(--PelixArmor-gold-primary);
    transition: var(--PelixArmor-transition-medium);
}

.faq-item.active .faq-icon {
    background: var(--PelixArmor-gold-primary);
}

.faq-item.active .faq-icon svg {
    fill: var(--PelixArmor-navy-deep);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    padding: 0 25px 20px;
    font-size: 14px;
    color: var(--PelixArmor-gray);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* ============================================
   CTA SECTION
============================================ */
.pricing-cta {
    margin-top: 80px;
    text-align: center;
    padding: 50px;
    background: linear-gradient(145deg, rgba(201, 162, 39, 0.1), rgba(201, 162, 39, 0.05));
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.pricing-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--PelixArmor-gradient-gold);
}

.cta-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--PelixArmor-white);
    margin-bottom: 12px;
}

.cta-text {
    font-size: 16px;
    color: var(--PelixArmor-gray);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-family: 'Exo 2', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--PelixArmor-transition-medium);
    cursor: pointer;
    border: none;
}

.cta-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.cta-btn-primary {
    background: var(--PelixArmor-gradient-gold);
    color: var(--PelixArmor-navy-deep);
    box-shadow: var(--PelixArmor-shadow-gold);
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(201, 162, 39, 0.4);
}

.cta-btn-secondary {
    background: transparent;
    border: 2px solid var(--PelixArmor-cyan);
    color: var(--PelixArmor-cyan);
}

.cta-btn-secondary:hover {
    background: var(--PelixArmor-cyan);
    color: var(--PelixArmor-navy-deep);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 992px) {
    #PelixArmor-pricing {
        padding: 60px 0;
    }

    .pricing-container {
        padding: 0 20px;
    }

    .pricing-title {
        font-size: 36px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .comparison-table-wrapper {
        overflow-x: auto;
    }

    .comparison-table {
        min-width: 700px;
    }

    .service-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 20px;
    }

    .service-tab-btn {
        min-width: 160px;
        flex-shrink: 0;
    }
}

@media (max-width: 768px) {
    .pricing-tabs {
        flex-direction: column;
        align-items: center;
    }

    .pricing-tab {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .pricing-cta {
        padding: 30px 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .pricing-title {
        font-size: 28px;
    }

    .price-amount {
        font-size: 38px;
    }

    .pricing-card {
        padding: 30px 25px;
    }
}