* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f5f5f5;
    padding: 20px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

h1 {
    text-align: center;
    color: #333;
    margin-bottom: 40px;
    font-size: 2.5em;
}

/* Tabs Navigation */
.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
    flex-wrap: wrap;
    list-style: none;
    border-bottom: none;
}

.tab-button {
    padding: 12px 15px;
    background-color: transparent;
    color: #000000;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #A9351B;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
    margin: 0 8px;
    border-radius: 10px;
}

.tab-button:hover {
    background-color: #A9351B;
    color: #FFFFFF;
}

.tab-button.active {
    background-color: #A9351B;
    color: #FFFFFF;
}

/* Tab Content */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Pricing Cards Grid */
.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

/* Pricing Card */
.pricing-card {
    background: #f9fafa;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    flex: 0 0 calc(33.333% - 17px);
    max-width: calc(33.333% - 17px);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Black Friday Badge */
.bf-badge {
    position: absolute;
    top: 30px;
    right: -55px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
    color: white;
    padding: 10px 50px;
    font-size: 14px;
    font-weight: bold;
    transform: rotate(45deg);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Speed Title */
.speed-title {
    font-size: 1.5em;
    font-weight: bold;
    color: #FFFFFF;
    background: #db863b;
    padding: 10px;
    margin: -30px -25px 20px -25px;
}

/* Price Section */
.price-section {
    margin: 20px 0;
    text-align: center;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 18px;
    display: inline-block;
    margin-right: 15px;
    vertical-align: middle;
}

.price {
    display: inline-flex;
    align-items: flex-start;
    gap: 5px;
}

.currency {
    font-size: 20px;
    color: #A9351B;
    font-weight: 600;
    margin-top: 10px;
}

.amount-large {
    font-size: 80px;
    color: #A9351B;
    font-weight: 600;
    line-height: 1;
}

.amount-small {
    font-size: 20px;
    color: #A9351B;
    font-weight: 600;
    margin-top: 10px;
}

.period {
    color: #666;
    font-size: 14px;
    margin-top: 5px;
    margin-bottom: 10px;
}

.promo-note {
    color: #ff5252;
    font-size: 12px;
    font-weight: bold;
    margin-top: 10px;
    order: 10;
}

/* Features List */
.features-list {
    list-style: none;
    margin: 0px;
    text-align: center;
    flex: 1 1 auto;
    border-radius: 8px;
    padding: 15px;
    background: #fafafa;
}

.features-list li {
    padding: 20px 8px;
    color: #000000;
    font-size: 16px;
    border-bottom: 2px solid #A9351B;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;}

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

.features-list li:before {
    content: none;
}

.features-list li img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.features-list li i {
    font-size: 20px;
    color: #000000;
    width: 20px;
    text-align: center;
}

/* CTA Button */
.cta-button {
    display: block;
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, #A9351B 0%, #A9351B 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
}

.cta-button:hover {
    background: linear-gradient(135deg, #0052a3 0%, #003d7a 100%);
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0,102,204,0.3);
}

/* Button Container */
.button-container {
    margin-top: auto;
    flex-shrink: 0;
}

/* Promo Note */
.promo-note {
    font-size: 12px;
    color: #ff5252;
    margin-top: 8px;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 1.8em;
    }

    .tab-button {
        padding: 12px 20px;
        font-size: 14px;
    }

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