:root {
    --bg-page: #F8FAFC;
    --text-dark: #1E293B;
    --text-muted: #475569;
    --text-light: #94A3B8;
    
    /* Premium clean BLUE gradient instead of purple */
    --primary-gradient: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    
    /* Ultra-light minimal shadows */
    --card-shadow: 0 8px 30px rgba(0, 0, 0, 0.02);
    --center-shadow: 0 15px 40px rgba(37, 99, 235, 0.12);
    
    --check-bg-light: #EFF6FF;
    --check-color-light: #3B82F6;
    --check-bg-dark: rgba(255, 255, 255, 0.2);
    --check-color-dark: #FFFFFF;
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-page);
    color: var(--text-dark);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

/* Header & Logos */
.header {
    text-align: center;
    padding: 4rem 1rem 2rem;
}

.logo-container {
    margin-bottom: 2rem;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border-radius: 100px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.main-logo {
    height: 48px;
    object-fit: contain;
}

.title-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.filter-white {
    filter: brightness(0) invert(1);
}

.header h1 {
    font-size: 2.75rem;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 0.75rem;
    letter-spacing: -0.03em;
}

.header p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.toggle-container {
    display: inline-flex;
    background: #E2E8F0;
    border-radius: 100px;
    padding: 0.35rem;
    margin: 0 auto;
}

.toggle-active {
    background: #FFFFFF;
    color: #0F172A;
    padding: 0.5rem 1.5rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    letter-spacing: 0.05em;
}

/* Pricing Wrapper */
.pricing-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1.5rem 5rem;
}

.pricing-container {
    display: flex;
    align-items: stretch;
    background: #FFFFFF;
    border-radius: 32px;
    box-shadow: var(--card-shadow);
    position: relative;
    padding: 0;
}

/* Cards */
.pricing-card {
    flex: 1;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
}

.left-card {
    border-right: 1px solid #F1F5F9;
}

.right-card {
    border-left: 1px solid #F1F5F9;
}

/* Center Card Elevated */
.center-card {
    background: var(--primary-gradient);
    color: #FFFFFF;
    border-radius: 28px;
    transform: scale(1.06);
    box-shadow: var(--center-shadow);
    z-index: 10;
    position: relative;
    padding-top: 4.5rem; /* Extra space for the badge */
}

/* Price Row */
.price-row {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.currency {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 0.5rem;
    margin-right: 0.2rem;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Highlighted Original Price */
.original-price {
    font-size: 1.15rem;
    color: #334155;
    font-weight: 600;
    margin-bottom: 1.75rem;
    background: #F8FAFC;
    display: inline-flex;
    align-items: baseline;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

.center-op {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #FFFFFF;
}

.original-price del {
    color: #EF4444; /* Red strikethrough */
    font-weight: 800;
    text-decoration: line-through;
    text-decoration-thickness: 2.5px; 
}

.center-op del {
    color: #FFB4B4; 
}

.original-price span {
    font-size: 0.95rem;
    margin-left: 0.4rem;
    opacity: 0.9;
}

/* Descriptions */
.plan-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.5;
    min-height: 65px;
}

.center-desc {
    color: rgba(255, 255, 255, 0.9);
}

/* Most Popular Pill */
.most-popular-pill {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    color: #FFFFFF;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    letter-spacing: 0.05em;
    overflow: hidden;
}

.most-popular-pill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

/* Features */
.features {
    list-style: none;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.85rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.center-features li {
    color: #FFFFFF;
}

/* Check Icons */
.check-icon {
    width: 24px;
    height: 24px;
    background: var(--check-bg-light);
    color: var(--check-color-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.center-check {
    background: var(--check-bg-dark);
    color: var(--check-color-dark);
}

.check-icon svg {
    width: 14px;
    height: 14px;
}

/* Renewal Info */
.renewal-info {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-weight: 600;
}

.center-card .renewal-info {
    color: rgba(255, 255, 255, 0.9);
}

/* Buttons */
.btn {
    width: 100%;
    padding: 1.15rem;
    border-radius: 100px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
    outline: none;
}

.btn-secondary {
    background: #F1F5F9;
    color: #334155;
    border: 1px solid transparent;
}

.btn-secondary:hover {
    background: #FFFFFF;
    border-color: #CBD5E1;
    color: #0F172A;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.btn-primary {
    background: #FFFFFF;
    color: #2563EB; /* Blue text */
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Addon Section */
.addon-section {
    margin-top: 4rem;
    background: #FFFFFF;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.addon-pill {
    background: #F1F5F9;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 1rem;
    border-radius: 100px;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.addon-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 800px;
    text-align: left;
}

.addon-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.addon-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.addon-price {
    text-align: right;
}

.addon-strike {
    text-decoration: line-through;
    color: #EF4444; 
    text-decoration-thickness: 2px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-right: 0.5rem;
}

.addon-current {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
}

/* Responsive Design */
@media (max-width: 1120px) {
    .pricing-card {
        padding: 3rem 1.25rem;
    }
    .price {
        font-size: 2.75rem;
    }
    .plan-name {
        font-size: 1.25rem;
    }
}

@media (max-width: 900px) {
    .pricing-container {
        flex-direction: column;
        background: transparent;
        box-shadow: none;
        gap: 2rem;
    }
    
    .pricing-card {
        background: #FFFFFF;
        border-radius: 28px;
        box-shadow: var(--card-shadow);
        border: 1px solid #F1F5F9;
        padding: 3.5rem 2rem;
    }
    
    .center-card {
        transform: scale(1);
    }
    
    .left-card, .right-card {
        border: 1px solid #F1F5F9;
    }
    
    .addon-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .addon-price {
        text-align: center;
    }
}
