/* ===== PRICING HERO ===== */
.pricing-hero {
    background: var(--gradient-2);
    padding: 160px 0 80px;
    text-align: center;
}
.pricing-hero .section-label { color: var(--primary-light); }
.pricing-hero .section-label::before { background: var(--primary-light); }
.pricing-hero .section-title { color: white; }
.pricing-hero .section-subtitle {
    color: var(--text-muted);
    margin: 0 auto;
}

/* ===== BILLING TOGGLE ===== */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}
.toggle-label {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s;
}
.toggle-label.active { color: white; font-weight: 600; }
.toggle-badge {
    background: var(--accent);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 100px;
    margin-left: 4px;
}
.toggle-switch {
    width: 52px;
    height: 28px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 100px;
    cursor: pointer;
    position: relative;
    transition: background 0.3s;
    padding: 0;
}
.toggle-switch.yearly { background: var(--primary); border-color: var(--primary); }
.toggle-knob {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.toggle-switch.yearly .toggle-knob { transform: translateX(24px); }

/* ===== PRICING CARDS ===== */
.pricing-cards {
    background: white;
    padding: 80px 0;
    margin-top: -40px;
    position: relative;
    z-index: 2;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}
.price-card {
    background: #fafafa;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.price-card.featured {
    background: white;
    border: 2px solid var(--primary);
    box-shadow: 0 16px 48px rgba(79,70,229,0.15);
    padding: 48px 32px;
}
.price-card.featured:hover {
    box-shadow: 0 24px 56px rgba(79,70,229,0.2);
}
.price-card-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-1);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 100px;
    white-space: nowrap;
}
.price-card-header h3 {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 4px;
}
.price-desc {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 24px;
}
.price-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 4px;
}
.price-value {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1;
    transition: opacity 0.2s;
}
.price-currency {
    font-size: 1.2rem;
    font-weight: 700;
    color: #475569;
}
.price-period {
    font-size: 0.95rem;
    color: #94a3b8;
    font-weight: 500;
}
.price-setup {
    color: #64748b;
    font-size: 0.85rem;
    margin-bottom: 28px;
}
.price-features {
    list-style: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}
.price-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
}
.price-features li::before {
    content: '';
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    border-radius: 50%;
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
}
.price-features li.included {
    color: #1e293b;
}
.price-features li.included::before {
    background-color: rgba(16,185,129,0.15);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
}
.price-features li.excluded {
    color: #94a3b8;
}
.price-features li.excluded::before {
    background-color: rgba(148,163,184,0.1);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
}
.price-btn {
    width: 100%;
    justify-content: center;
    color: #1e293b;
    border-color: #e2e8f0;
    background: white;
}
.price-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(79,70,229,0.04);
}
.price-card.featured .price-btn {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 8px 32px rgba(79,70,229,0.35);
}
.price-card.featured .price-btn:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
}
.pricing-note {
    text-align: center;
    color: #94a3b8;
    font-size: 0.85rem;
    margin-top: 32px;
}

/* ===== ADD-ONS ===== */
.addons {
    background: #f8fafc;
    padding: 100px 0;
}
.addons-header {
    text-align: center;
    margin-bottom: 48px;
}
.addons-header .section-subtitle { margin: 0 auto; }
.addons-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 700px;
    margin: 0 auto;
}
.addon-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px 24px;
    transition: all 0.3s;
}
.addon-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(79,70,229,0.08);
}
.addon-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(79,70,229,0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.addon-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
}
.addon-card p {
    font-size: 0.85rem;
    color: #64748b;
}
.addon-price {
    margin-left: auto;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}

/* ===== SERVICES ===== */
.services {
    background: white;
    padding: 100px 0;
}
.services-header {
    text-align: center;
    margin-bottom: 48px;
}
.services-table-wrap {
    max-width: 700px;
    margin: 0 auto;
}
.services-table {
    width: 100%;
    border-collapse: collapse;
}
.services-table td {
    padding: 16px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.95rem;
}
.services-table tr:last-child td { border-bottom: none; }
.service-price {
    text-align: right;
    font-weight: 700;
    color: #1e293b;
    white-space: nowrap;
}

/* ===== COMBOS ===== */
.combos {
    background: var(--gradient-2);
    padding: 100px 0;
    color: white;
}
.combos-header {
    text-align: center;
    margin-bottom: 48px;
}
.combos-header .section-label { color: var(--primary-light); }
.combos-header .section-label::before { background: var(--primary-light); }
.combos-header .section-title { color: white; }
.combos-header .section-subtitle { color: var(--text-muted); margin: 0 auto; }
.combos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}
.combo-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 40px 32px;
    position: relative;
    transition: all 0.4s;
    display: flex;
    flex-direction: column;
}
.combo-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-4px);
}
.combo-card.featured {
    border-color: var(--primary);
    background: rgba(79,70,229,0.1);
}
.combo-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 4px;
}
.combo-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
}
.combo-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
    flex-grow: 1;
}
.combo-items li {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    padding-left: 20px;
    position: relative;
}
.combo-items li::before {
    content: '+';
    position: absolute;
    left: 0;
    color: var(--primary-light);
    font-weight: 700;
}
.combo-total {
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
    text-align: center;
}
.combo-total strong {
    font-size: 1.4rem;
}
.combo-onetime {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}
.combo-card .price-btn {
    width: 100%;
    justify-content: center;
    border-color: rgba(255,255,255,0.2);
    color: white;
    background: transparent;
}
.combo-card .price-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.4);
}
.combo-card.featured .price-btn {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}
.combo-card.featured .price-btn:hover {
    background: var(--primary-dark);
}

/* ===== NAV ACTIVE STATE ===== */
.nav-links a.active { color: white; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .combos-grid { grid-template-columns: 1fr; max-width: 420px; }
}
@media (max-width: 768px) {
    .pricing-hero { padding: 140px 0 60px; }
    .addon-card { flex-wrap: wrap; }
    .addon-price { margin-left: 64px; }
}
