:root {
    --indigo-main: #4F46E5;
    --indigo-soft: #EEF2FF;
    --text-dark: #0F172A;
    --text-light: #64748B;
}

.premium-comparison-v3 {
    padding: 80px 0; /* Mniejsza przestrzeń u góry */
    background: #FFFFFF;
    font-family: 'Inter', system-ui, sans-serif;
}

/* Nagłówek */
.header-v3 {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 60px;
}

.badge-accent {
    display: inline-block;
    background: var(--indigo-soft);
    padding: 10px 24px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.badge-text {
    color: var(--indigo-main);
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.title-v3 {
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 900;
    color: var(--text-dark);
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.text-underline {
    position: relative;
    white-space: nowrap;
}

.text-underline::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(79, 70, 229, 0.15); /* Podkreślenie w kolorze Indigo */
    z-index: -1;
}

.desc-v3 {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Container */
.comparison-container-v3 {
    display: flex;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
    gap: 0; /* Brak odstępu dla efektu styku */
    position: relative;
}

/* Boxy */
.comp-box {
    flex: 1;
    padding: 60px;
    border-radius: 40px;
    position: relative;
    transition: all 0.4s ease;
}

.legacy-v3 {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.modern-v3 {
    background: #FFFFFF;
    border: 2px solid var(--indigo-main);
    box-shadow: 0 30px 60px -12px rgba(79, 70, 229, 0.2);
    z-index: 2;
    transform: scale(1.05); /* Wyróżnienie */
}

.box-tag {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 30px;
    display: block;
}

.box-tag.primary {
    color: var(--indigo-main);
}

/* Tool List */
.tool-list-v3 {
    list-style: none;
    padding: 0;
}

.tool-list-v3 li {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #EDF2F7;
    color: #94A3B8;
    font-weight: 500;
}

.total-v3 {
    margin-top: 40px;
    text-align: center;
    border-top: 2px dashed #E2E8F0;
    padding-top: 30px;
}

.total-price-old {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #EF4444;
    text-decoration: line-through;
    opacity: 0.6;
}

/* Modern Price */
.price-display-v3 {
    margin-bottom: 40px;
}

.main-price-v3 {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.amount-v3 {
    font-size: 6.5rem;
    font-weight: 950;
    color: var(--text-dark);
    letter-spacing: -4px;
    line-height: 0.9;
}

.currency-v3, .period-v3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--indigo-main);
}

.price-info-v3 {
    color: var(--text-light);
    margin-top: 10px;
    font-weight: 500;
}

/* Features */
.features-cloud-v3 {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 50px;
}

.f-pill {
    background: var(--indigo-soft);
    color: var(--indigo-main);
    padding: 8px 16px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.85rem;
}

/* CTA Zone */
.url-input-v3 {
    display: flex;
    align-items: center;
    background: #F1F5F9;
    padding: 18px 25px;
    border-radius: 18px;
    margin-bottom: 15px;
}

.url-base {
    color: var(--text-light);
    font-weight: 700;
}

.url-input-v3 input {
    border: none;
    outline: none;
    background: transparent;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-left: 5px;
    width: 100%;
}

.btn-register-v3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--indigo-main); /* Twoje #4F46E5 */
    color: white;
    text-decoration: none;
    padding: 22px;
    border-radius: 18px;
    font-weight: 800;
    font-size: 1.1rem;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-register-v3:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(79, 70, 229, 0.4);
}

/* VS Divider */

@media (max-width: 992px) {
    .comparison-container-v3 { flex-direction: column; }
    .modern-v3 { transform: scale(1); margin-top: -20px; }
    .legacy-v3 { border-radius: 40px; border: 1px solid #E2E8F0; }
}