/* Plik: css/page-buy.css */

/* --- HERO SECTION --- */
.buy-hero {
    padding: 100px 0 40px;
    text-align: center;
}

.buy-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    line-height: 1.2;
}

.buy-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* --- PRICING SECTION --- */
.pricing-section {
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Karta Produktu */
.pricing-card {
    background: var(--bg-secondary); /* zamiast --bg-card */
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem;
    width: 100%;
    max-width: 480px; /* Nie za szeroka */
    text-align: center;
    position: relative;
    
    /* Efekt uniesienia i delikatny cień */
    box-shadow: 0 20px 40px var(--shadow-black);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Efekt poświaty (Glow) wokół karty */
.pricing-card::before {
    content: '';
    position: absolute;
    inset: -1px; /* Obrys */
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(180deg, rgba(255,255,255,0.1), transparent); /* można dodać zmienną --white-10 jeśli chcesz */
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px var(--shadow-indigo); /* Fioletowa poświata po najechaniu */
    border-color: var(--accent-primary);
}

/* Elementy wewnątrz karty */
.product-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.price-tag {
    font-size: 5rem; /* Zwiększyliśmy z 4rem na 5rem - niech będzie duża! */
    font-weight: 900; /* Extra bold */
    
    /* Nałożenie gradientu na sam tekst (tak jak w nagłówkach) */
    background: var(--accent-gradient); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    
    /* Dodatkowy "neonowy" cień pod spodem, żeby cena "świeciła" */
    filter: drop-shadow(0 4px 15px var(--shadow-indigo));

    margin-bottom: 0.5rem;
    line-height: 1.1;
    letter-spacing: -2px; /* Ściśnięcie liter wygląda nowocześniej przy dużym rozmiarze */
}

.price-sub {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Separator */
.divider {
    height: 1px;
    background: var(--border-color);
    width: 100%;
    margin: 0 auto 2rem;
}

/* Lista funkcji */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.feature-item svg {
    color: var(--accent-primary); /* Kolor "ptaszka" */
    flex-shrink: 0;
}

/* Przycisk zakupu */
.btn-buy-large {
    display: block;
    width: 100%;
    padding: 18px;
    
    /* 1. CENTRALIZACJA KOLORU */
    background: var(--accent-gradient);
    
    color: var(--brand-light);
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.2s ease;
    
    /* 2. SPÓJNY CIEŃ */
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.btn-buy-large:hover {
    /* 3. EFEKT NAJECHANIA (UX) - taki sam jak w nagłówku */
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.6);
    filter: brightness(1.15);
}

/* Sekcja zaufania (FastSpring logo itp) */
.trust-badges {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 15px;
    opacity: 0.6;
}

.trust-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
}

/* Gwarancja */
.guarantee-box {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 1px solid var(--border-color);
}

.guarantee-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
}